-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "typescript-template",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start:dev": "nodemon --ignore build/ --exec ts-node src/index.ts",
"build": "rm -rf build && tsc",
"start": "node ./build/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"apollo-server-express": "^2.16.1",
"body-parser": "^1.19.0",
"chichi": "^0.0.2",
"cors": "^2.8.5",
"diana-js": "^0.7.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^6.0.15",
"subscriptions-transport-ws": "^0.9.17"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"nodemon": "^1.19.4",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
}
}