-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 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
59
60
{
"name": "di",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"start": "npm run build-dev && npm run development",
"development": "NODE_ENV=development node build/bundle.js",
"production": "NODE_ENV=production node build/bundle.js",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"posttest": "npm run lint"
},
"pre-commit": [
"fix",
"test"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/util.promisify": "^1.0.4",
"dotenv": "^8.2.0",
"dotenv-webpack": "^6.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"http": "0.0.1-security",
"inversify": "^5.0.5",
"knex": "^0.21.18",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"util": "^0.12.3",
"uuid": "^8.3.2",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/mysql": "^2.15.17",
"@types/node": "^14.11.2",
"@types/uuid": "^8.3.0",
"gts": "^3.1.0",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.15",
"typescript": "^4.0.3",
"webpack": "^5.21.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}