-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 KB
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
51
52
53
54
55
56
57
58
59
{
"name": "Nova",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"dev": "webpack-dev-server --env.NODE_ENV=development",
"dev:hot": "NODE_ENV=development REDIS_URI=redis://redis:6379 node ./server/server.js & webpack-dev-server --env.NODE_ENV=development --hot --inline --progress --colors --watch --content-base ./",
"docker-dev:hot": "docker-compose -f docker-compose-dev-hot.yml up",
"build": "webpack --env.NODE_ENV=production",
"prestart": "npm run build",
"start": "REDIS_URI=redis://redis:6379 node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nova-introspection/Nova.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nova-introspection/Nova/issues"
},
"homepage": "https://github.com/nova-introspection/Nova#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression-webpack-plugin": "^2.0.0",
"cors": "^2.8.5",
"css-loader": "^2.1.1",
"d3": "^5.9.2",
"express": "^4.16.4",
"node-fetch": "^2.3.0",
"normalize-url": "^4.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"redis": "^2.8.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0",
"style-loader": "^0.23.1",
"url-parse": "^1.4.7"
}
}