-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"description": "A Neo4j-GraphQL API for the CovidGraph project",
"devDependencies": {
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"execa": "^4.0.3",
"grandstack": "^0.1.5",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"prettier-eslint-cli": "^5.0.0",
"ssri": "^8.0.0",
"vercel": "^20.1.2"
},
"scripts": {
"seedDb": "node scripts/seed.js",
"start": "node scripts/start-dev.js",
"build": "node scripts/build.js",
"format": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier --write",
"format:log": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier",
"inferschema:write": "node scripts/inferSchema.js",
"test": "cd api && npm run integration"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {}
}