generated from johancc/Apollo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "@coved/website",
"version": "1.0.0",
"author": "Johan Cervantes <johanc@mit.edu>",
"license": "MIT",
"private": true,
"repository": "https://github.com/CovEducation/Website",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "node packages/server/build/index.js",
"postinstall": "husky install",
"build": "run-p clean run-s tsc -b ./packages/tsconfig.base.json",
"bootstrap": "lerna bootstrap",
"clean": "lerna run --parallel lint",
"lint": "yarn run workspaces lint",
"release": "lerna publish"
},
"lint-staged": {
"**/*.+{ts|tsx}": [
"prettier --write --single-quote",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"lint-staged": "^11.0.1",
"rimraf": "^3.0.1"
},
"devDependencies": {
"forever": "^4.0.1",
"husky": "^5.0.6",
"lerna": "^3.22.1",
"mongodb-memory-server": "^6.9.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prompts": "^2.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}