This repository was archived by the owner on Jun 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
52
53
54
55
56
57
58
{
"name": "as-server",
"version": "0.1.0",
"description": "Web server for apnasamaan",
"scripts": {
"start": "npm run serve",
"build-ts": "tsc",
"serve": "node dist/server.js",
"watch-node": "nodemon --inspect=0.0.0.0:9229 dist/server.js",
"dev": "npm run migrate:latest && concurrently --kill-others \"npm run watch-ts\" \"npm run watch-node\"",
"watch-ts": "tsc -w",
"lint": "eslint src/**/*",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"migrate:latest": "knex migrate:latest --knexfile ./src/config/knexfile.js"
},
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,json,md}": [
"prettier --write",
"eslint",
"git add"
]
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.5",
"@types/pg": "7.4.13",
"@typescript-eslint/eslint-plugin": "^1.4.1",
"@typescript-eslint/parser": "^1.4.1",
"concurrently": "^4.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"ts-node": "8.0.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"knex": "0.16.3",
"pg": "7.8.1"
}
}