-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.31 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.31 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
60
61
62
63
64
65
66
67
68
69
{
"name": "code4health-frontend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/inidus/code4health-frontend.git",
"author": "james@inidus.com",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.2",
"@fortawesome/fontawesome-free-brands": "^5.0.8",
"@fortawesome/fontawesome-free-solid": "^5.0.4",
"@fortawesome/react-fontawesome": "^0.0.17",
"axios": "^0.17.1",
"babel-plugin-module-resolver": "^3.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"compression-webpack-plugin": "^1.1.6",
"grid-styled": "^2.0.0-11",
"history": "^4.7.2",
"keycloak-js": "^3.4.3",
"prop-types": "^15.6.0",
"query-string": "^5.1.0",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-form": "^7.2.0",
"redux-thunk": "^2.2.0",
"styled-components": "^2.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"react-dev-utils": "^4.2.1",
"react-hot-loader": "^3.1.3",
"standard": "^11.0.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0"
},
"scripts": {
"build": "webpack --config ./app/config/webpack/webpack.config.prod.babel.js --env.API='https://some-production-api:8080/api' --progress",
"lint": "standard . --ignore-pattern build/",
"lint:fix": "standard . --ignore-pattern build/ --fix",
"start:dev": "webpack-dev-server --config ./app/config/webpack/webpack.config.dev.babel.js --port 8888 --host 0.0.0.0 --env.API=https://c4h.freshehr.com/platform/api"
},
"standard": {
"globals": [
"localStorage",
"__API"
]
}
}