-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 938 Bytes
/
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
{
"name": "train-schedules",
"version": "1.0.1",
"main": "src/index.ts",
"scripts": {
"serve": "nodemon --config \"nodemon.json\"/",
"build": "babel -d ./dist ./src"
},
"repository": "[email protected]:bardrotzer/train-schedules.git",
"author": "Bård Røtzer <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"pg-promise": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.17",
"babel-plugin-module-resolver": "^3.2.0",
"nodemon": "^1.19.1",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}