-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 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
{
"name": "taxi-booking",
"version": "1.0.0",
"description": "Taxi booking system written in Node.js using TypeScript",
"license": "MIT",
"author": "Taavi Kübar",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"nodemon": "^1.18.9",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.11",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
},
"scripts": {
"clean": "./node_modules/.bin/rimraf ./public",
"compile": "npm run clean && ./node_modules/.bin/tsc",
"watch": "npm run clean && ./node_modules/.bin/tsc --watch",
"start": "npm run compile && npm run server",
"server": "./node_modules/.bin/nodemon ./public/lib",
"lint": "./node_modules/.bin/tslint ./lib/**/*.{ts,tsx}",
"tests": "npm run test-unit && npm run test-api",
"test-unit": "./node_modules/jest/bin/jest.js",
"test-unit-watch": "node node_modules/jest/bin/jest.js --watch",
"test-api": "python test/api/check.py"
}
}