-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 753 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 753 Bytes
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
{
"name": "fullstack-coding-challenge",
"version": "1.0.0",
"main": "index.js",
"author": "Amine TABOU <amin.tabou@gmail.com>",
"license": "none",
"scripts": {
"start": "node app",
"watch": "nodemon app && mongod",
"build": "webpack"
},
"dependencies": {
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"connect-mongo": "^1.3.2",
"express": "^4.15.2",
"express-session": "^1.15.2",
"mongoose": "^4.9.8",
"nodemon": "^1.11.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"webpack": "^3.6.0"
}
}