-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "exodus",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "PORT=3030 mocha src/*test.ts --exit",
"dev": "nodemon src/index.ts",
"pm2": "pm2 start src/index.ts --watch --name exodus",
"clean": "rm -rf build",
"build": "yarn clean && tsc",
"serve": "NODE_ENV=production node build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoqey/exodus.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stoqey/exodus/issues"
},
"homepage": "https://github.com/stoqey/exodus#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@sentry/node": "^5.15.5",
"@types/express": "^4.17.6",
"ajv": "^6.12.2",
"dotenv": "^8.2.0",
"influx": "^5.5.1",
"lodash": "^4.17.20",
"moment": "2.24.0",
"nano-date": "^4.1.0",
"nanoexpress": "2.0.0"
}
}