-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 964 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": "lisbon-schematic-metro-map",
"version": "1.0.0",
"description": "Schematic metro map of Lisbon",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"heroku-prebuild": "npm install --dev",
"postinstall": "npm run build",
"process-data": "node process-data.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon -r dotenv/config index.js",
"webpack": "webpack --mode development --watch"
},
"author": "Gleb Husky",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.4",
"dotenv": "^6.2.0",
"nodemon": "^1.18.9",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"bootstrap": "^4.2.1",
"d3-tube-map": "^0.7.0",
"express": "^4.16.4",
"jquery": "^3.3.1",
"pg": "^7.8.0",
"popper.js": "^1.14.6"
}
}