forked from AspiringAspen/color-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "color-picker",
"version": "1.5.0",
"description": "",
"main": "server/app.js",
"scripts": {
"start": "nodemon server/app.js",
"start-webpack": "webpack --config webpack.config.js --progress --colors --watch",
"start-dev": "npm run start & npm run start-webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AspiringAspen/color-picker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AspiringAspen/color-picker/issues"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"homepage": "https://github.com/AspiringAspen/color-picker#readme",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.12.1",
"nodemon": "^1.11.0",
"webpack": "^1.14.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"mongodb": "^2.2.12",
"mongoose": "^4.7.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-bootstrap-sweetalert": "^3.0.0",
"react-copy-to-clipboard": "^4.2.3",
"react-dom": "^15.4.1",
"react-fontawesome": "^1.5.0",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"superagent": "^3.3.0"
}
}