-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pricing-service",
"version": "0.0.7",
"description": "TODO",
"main": "src/index.ts",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.production.config.ts",
"postinstall": "npm run typecheck",
"typecheck": "tsc --project tsconfig.typecheck.json",
"start": "pm2 start pm2.yaml",
"stop": "pm2 stop pm2.yaml",
"test": "jest",
"dev:watch": "NODE_ENV=development webpack",
"dev:run": "NODE_ENV=development nodemon build/index.js",
"eslint": "eslint src tests"
},
"author": "",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "npm run typecheck"
}
},
"dependencies": {
"axios": "^0.21.4",
"bignumber.js": "9.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^5.0.0-alpha.8",
"mocha": "^9.1.1",
"moment": "^2.29.1",
"node-fetch": "^2.6.9",
"pm2": "^5.1.1",
"semver-compare": "^1.0.0",
"ts-jest": "^29.0.5"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.6.2",
"@types/semver-compare": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^4.3.0",
"jest": "^29.4.2",
"nock": "^13.3.0",
"nodemon": "^2.0.12",
"ts-loader": "^9.2.5",
"ts-nameof": "^5.0.0",
"ts-node": "^10.2.1",
"tsc-watch": "^4.5.0",
"ttypescript": "^1.5.15",
"typescript": "^4.4.2",
"typescript-is": "^0.18.3",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-shell-plugin-next": "^2.2.2"
},
"engines": {
"node": "16.19.0",
"npm": "8.19.3"
}
}