This repository has been archived by the owner on Apr 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "server-js",
"version": "1.0.0",
"main": "./out/index.js",
"license": "MIT",
"scripts": {
"start": "node ./out/index.js",
"compile": "tsc -p . --sourcemap",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.test.ts' --exec 'ts-node' src/index.ts",
"e2e": "mocha -r ts-node/register 'tests/e2e/**/*.ts'",
"unit": "mocha -r ts-node/register 'tests/unit/**/*.ts'",
"test": "yarn unit && yarn e2e",
"cleanse": "rm -rf out node_modules",
"build": "yarn cleanse && yarn install && tsc -p . && rm -rf node_modules && yarn install --production"
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/argparse": "^2.0.5",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.15",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/express-rate-limit": "^5.1.1",
"@types/firebase": "^3.2.1",
"@types/fs-extra": "^9.0.6",
"@types/helmet": "^4.0.0",
"@types/mocha": "^8.2.2",
"@types/multer": "^1.4.5",
"@types/rimraf": "^3.0.0",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/uuid-validate": "^0.0.1",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@pm2/io": "^4.3.5",
"adm-zip": "^0.5.2",
"argparse": "^2.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"firebase": "^8.2.6",
"firebase-admin": "^9.4.2",
"fs-extra": "^9.1.0",
"helmet": "^4.4.1",
"multer": "^1.4.2",
"rimraf": "^3.0.2",
"string-argv": "^0.3.1",
"uuid": "^8.3.2",
"uuid-validate": "^0.0.3"
}
}