-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "riksviz",
"version": "1.0.0",
"description": "A visualization of Riksdagen",
"main": "server.js",
"engines": {
"node": ">=8.0.0 <11.0.0",
"yarn": ">=1.0.0 <2.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "cd server && yarn server",
"client": "cd client && yarn start",
"install": "(cd client && yarn) && (cd server && yarn)",
"start": "concurrently --kill-others-on-fail \"yarn run server\" \"yarn run client\"",
"build": "concurrently \"cd client && yarn build\" \"cd server && yarn build\"",
"heroku-postbuild": "yarn build",
"start:prod": "cd server && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adigladi/RiksdagsViz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adigladi/RiksdagsViz/issues"
},
"homepage": "https://github.com/adigladi/RiksdagsViz#readme",
"dependencies": {
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}