-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "drag-drop-react",
"version": "0.6.6",
"description": "",
"main": "./build/DragDrop-React.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && npm run build:development && npm run build:production",
"build:development": "node_modules/.bin/webpack --config ./webpack/webpack.dev.js",
"build:production": "NODE_ENV=production node_modules/.bin/webpack --config ./webpack/webpack.prod.js",
"start": "node_modules/.bin/concurrent \"node_modules/.bin/webpack-dev-server --config ./test/webpack.test-server.js\" \"npm run build:development -- --watch\""
},
"author": "Isaac Ruiz",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-loader": "^6.0.1",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-runtime": "^6.0.14",
"concurrently": "^2.0.0",
"react-dom": "^0.14.7",
"ts-loader": "^0.8.1",
"typescript": "^1.8.7",
"webpack": "^2.1.0-beta.4",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "^0.14.3",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.2"
},
"dependencies": {
"react": "^0.14.3",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.2"
}
}