-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-graphql": "^0.9.0",
"@types/graphql-relay": "^0.6.0",
"@types/node": "^15.0.2",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"nodemon": "^2.0.12",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.2.2"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-relay": "^0.6.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34",
"uid": "^2.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write --single-quote true --trailing-comma all --print-width 120 --semi false",
"git add"
]
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts --fix",
"dev": "NODE_ENV=development yarn lint && webpack --watch --config ./webpack.config.dev.js",
"build": "NODE_ENV=production webpack --config ./webpack.config.prod.js",
"lint:staged": "lint-staged",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
}
}