-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.66 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": "automeal",
"version": "1.0.0",
"description": "Generate meals based on ingredients you already have",
"main": "server/server.js",
"scripts": {
"i": "npm i && npm i --prefix server && npm i --prefix client",
"start": "node server --prefix server",
"server": "nodemon server --prefix server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"test": "npm run test --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/automeal/AutoMeal.git"
},
"author": "Daniel Segarra, Wei Lian, Savannah Nester, Victoria Simatupang, Roy Lema",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/automeal/AutoMeal/issues"
},
"homepage": "https://github.com/automeal/AutoMeal#readme",
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.10",
"prettier": "^1.16.4"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5"
}
}