-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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": "@jcu/web-framework-react",
"version": "0.1.7",
"license": "UNLICENSED",
"main": "lib/index.js",
"scripts": {
"start": "styleguidist server",
"compile":
"NODE_ENV=production babel --out-dir lib --copy-files --ignore 'src/styleguide,src/setupTests.js,*.test.js' src/",
"watch": "yarn compile --watch",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"styleguide": "yarn start",
"styleguide:build": "styleguidist build",
"precommit": "lint-staged",
"prepublish": "yarn compile"
},
"babel": {
"presets": ["env", "react-app"],
"ignore": ["src/styleguide"]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^3.1.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.2",
"eslint": "4.18.2",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest-enzyme": "^4.0.2",
"lint-staged": "^6.1.0",
"react-scripts": "1.1.0",
"react-styleguidist": "^6.2.3"
}
}