-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "ShorterLinker",
"version": "1.0.0",
"description": "Shorter linker caster",
"keywords": [
"express",
"typescript",
"LongLinker cast to shorter link"
],
"license": "MUT",
"main": "lib/app.js",
"engines": {
"node": ">=8.2"
},
"scripts": {
"build": "npm run lint && npm run clear && tsc && abspath",
"lint": "tslint --project tsconfig.json --config tslint.json --format stylish",
"prod": "cross-env NODE_ENV=production NODE_PATH=src nodemon -e ts -w src -x ts-node --inspect src/app.ts",
"serve": "cross-env NODE_ENV=development NODE_PATH=src nodemon -e ts -w src -x ts-node --inspect src/app.ts"
},
"dependencies": {
"@types/mysql": "^2.15.10",
"@types/redis": "^2.8.18",
"body-parser": "^1.19.0",
"cross-env": "^5.2.1",
"express": "^4.17.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"redis": "^3.0.2",
"winston": "^2.4.4"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^2.2.48",
"@types/morgan": "^1.9.0",
"@types/node": "^8.10.60",
"@types/winston": "^2.4.4",
"absolute-path-converter": "^1.0.6",
"chai": "^4.2.0",
"del-cli": "^1.1.0",
"mocha": "^4.1.0",
"nodemon": "^1.19.4",
"ts-node": "^3.0.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^2.9.2"
}
}