-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "dimebot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app/server.js",
"build": "rm -rf dist && tsc -p tsconfig.json --skipLibCheck",
"dev": "NODE_ENV=development ts-node ./src/app/server.ts",
"prod": "npm run build && npm start",
"migrations": "npm run build && tsc --p migrations && typeorm migration:run",
"create-migration": "typeorm migration:create -n",
"test": "NODE_ENV=test jest",
"test:cov": "NODE_ENV=test jest --coverage",
"test:unit": "NODE_ENV=test jest tests/unit",
"test:unit:cov": "NODE_ENV=test jest tests/unit --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^4.0.0",
"@types/express": "^4.17.2",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^9.6.55",
"@types/winston": "^2.4.4",
"jest": "^24.9.0",
"natives": "^1.1.6",
"ts-jest": "^24.3.0",
"ts-node": "^7.0.1",
"tslint": "5.16.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "3.5.3"
},
"dependencies": {
"aurelia-dependency-injection": "^1.5.2",
"botkit": "^0.7.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.22",
"winston": "^2.4.4"
}
}