-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "CookBuk",
"version": "1.0.0",
"description": "Recipe & Pantry Inventory Application",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"sampleData": "node database/sampleData.js",
"start": "node server/index.js",
"postinstall": "webpack -d",
"lint": "eslint client/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigRedZone/CookBuk.git"
},
"engines": {
"node": "8.11.3"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BigRedZone/CookBuk/issues"
},
"homepage": "https://github.com/BigRedZone/CookBuk#readme",
"dependencies": {
"artyom.js": "^1.0.6",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"jquery": "^3.3.1",
"mongoose": "^5.2.13",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
}
}