forked from decred/politeiagui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.72 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "politeiagui",
"version": "0.1.1",
"dependencies": {
"concurrently": "^3.5.0",
"core-decorators": "^0.20.0",
"crypto-js": "^3.1.9-1",
"font-awesome": "^4.7.0",
"js-file-download": "^0.4.1",
"js-sha256": "^0.7.1",
"localforage": "^1.5.4",
"lodash": "^4.17.4",
"mtree": "^1.0.0",
"node-less-chokidar": "^0.1.2",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.0.0",
"react-body": "^0.2.0",
"react-dom": "^16.0.0",
"react-file-reader": "^1.1.3",
"react-markdown": "^3.1.1",
"react-mde": "^2.1.2",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.14",
"redux": "^3.7.2",
"redux-form": "^7.1.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"showdown": "^1.8.3",
"snew-classic-ui": "https://github.com/decred/snew-classic-ui",
"timeago-react": "^1.2.2",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0"
},
"scripts": {
"mockapi": "node mockapi.js",
"start": "cross-env HTTPS=true react-scripts start",
"uidev": "concurrently \"node mockapi.js\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint src",
"precommit": "lint-staged",
"test:e2e": "nightwatch -c test/e2e/nightwatch.json"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^1.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.9.0",
"babel-runtime": "^6.20.0",
"chromedriver": "^2.33.2",
"connect": "^3.6.5",
"connect-api-mocker": "^1.3.3",
"cross-env": "^5.0.5",
"deasync": "^0.1.10",
"eslint": "^4.8.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.4.0",
"firefox-profile": "^1.0.3",
"geckodriver": "^1.9.0",
"https": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"nightwatch": "^0.9.16",
"pem": "^1.12.0",
"redux-devtools-extension": "^2.13.2",
"selenium-server-standalone-jar": "3.4.0"
},
"proxy": {
"/api": {
"target": "https://localhost:4443",
"secure": false,
"pathRewrite": {
"/api": ""
}
}
}
}