-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 920 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 920 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
32
33
34
35
36
37
38
39
{
"name": "own-project",
"version": "1.0.0",
"description": "An app which allows customers to order food online",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"server": "nodemon server.js -w server -i server/static"
},
"author": "",
"license": "ISC",
"babel": {
"presets": [
"babel-preset-react",
"babel-preset-env"
]
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"hbs": "^4.0.1",
"jest": "^22.3.0",
"node-fetch": "^2.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.4.2",
"nodemon": "1.17.5",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9"
}
}