-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "react-dnd",
"version": "0.0.1",
"description": "Practicing react.js drag and drop",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "NODE_ENV='development' node app.js",
"test": "npm run test-unit",
"test-unit": "NODE_ENV=test mocha 'test/*.js'",
"heroku-postbuild": "webpack -p --config ./webpack.config.js --progress"
},
"repository": {
"type": "git"
},
"author": "Phillip Ou",
"license": "MIT",
"dependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.1",
"cookie-parser": "^1.4.0",
"css-loader": "^0.26.0",
"csurf": "^1.9.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"image-webpack-loader": "^3.0.0",
"js-cookie": "^2.1.3",
"json-loader": "^0.5.4",
"lodash": "^4.16.5",
"moment": "^2.15.1",
"mongoose": "^4.1.10",
"node-uuid": "^1.4.3",
"react": "^15.4.0",
"react-autocomplete": "^1.4.0",
"react-copy-to-clipboard": "^4.2.3",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.2",
"react-modal-dialog": "^4.0.2",
"react-router": "^2.8.1",
"request": "^2.76.0",
"request-promise-native": "^1.0.3",
"supertest": "^1.1.0",
"url-loader": "^0.5.7",
"uuid": "^3.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.1"
},
"devDependencies": {}
}