-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "bowow-app-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=12.0"
},
"scripts": {
"clean": "rm -r ./bin",
"compile": "tsc",
"compile:win": "SET NODE_ENV=development&& tsc",
"start": "npm run compile && node ./bin/index",
"start:win": "npm run compile:win && node ./bin/index",
"test": "npm run compile && ava",
"test:win": "npm run compile:win && ava",
"test-cover": "c8 --check-coverage --lines 100 npm run test",
"test-cover:win": "c8 --check-coverage --lines 100 npm run test:win"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.2",
"app-root-path": "^3.0.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"firebase-admin": "^8.7.0",
"fs": "^0.0.1-security",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"winston": "^3.2.1"
},
"_moduleAliases": {
"config": "./bin/config",
"api": "./bin/api",
"tests": "./bin/tests"
},
"devDependencies": {
"@types/node": "^12.12.5",
"ava": "^2.4.0",
"c8": "^6.0.1",
"typescript": "^3.6.4"
}
}