This repository was archived by the owner on Nov 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "GridcoinWebClient",
"description": " A web interface for the Gridcoin Research daemon.",
"repository": {
"type": "git",
"url": "https://github.com/rsparlin/Gridcoin-Web-Client.git"
},
"version": "0.1.0",
"contributors": [
"Ryan Sparlin"
],
"main": "server.js",
"dependencies": {
"boom": "^7.1.1",
"config": "^1.26.2",
"hapi": "^17.2.0",
"inert": "^5.1.0",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-moment": "^0.7.0",
"react-router-dom": "^4.2.2",
"recharts": "^1.0.0-beta.10",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"semantic-ui": "^2.3.1",
"semantic-ui-less": "^2.3.1",
"semantic-ui-react": "^0.74.2"
},
"license": "MIT",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"moment": "^2.20.1",
"uglify-es": "^3.3.8",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.6.0"
},
"scripts": {
"start": "node src/server.js",
"test": "eslint --ext js --ext jsx src/ content/js",
"build-dev": "NODE_ENV=development webpack",
"build-prod": "NODE_ENV=production webpack"
}
}