-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"version": "1.0.0",
"description": "Find parking space by Google Assistant",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=production && node dist/api/app.js",
"dev": " set NODE_ENV=development && nodemon src/api/app.ts",
"build": "tsc -p tsconfig.production.json",
"prod": "now --prod dist/src -A now.json --token=$NOW_TOKEN",
"update": "node dist/src/utils/parks.js",
"test": "nyc mocha dist/test",
"posttest": "nyc report --reporter=json"
},
"nyc": {
"extension": [
".ts"
],
"all": true
},
"author": "Kiros Choi",
"license": "GPL-3.0-or-later",
"dependencies": {
"actions-on-google": "^2.12.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/rewire": "^2.5.28",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"rewire": "^4.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}