-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"license": "UNLICENSED",
"homepage": "http://pmilewski.github.io/plp",
"dependencies": {
"babel-preset-react": "^6.24.1",
"node-sass-chokidar": "^0.0.3",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-scripts": "1.1.1",
"react-sortable-hoc": "^0.6.8",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gh-pages": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"jest-environment-jsdom": "^22.1.4",
"jest-environment-jsdom-global": "^1.0.3",
"react-test-renderer": "^16.2.0",
"redux-devtools": "^3.4.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.4.0",
"redux-testkit": "^1.0.6",
"webpack-dev-server": "^2.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest src/javascript/",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "jest-environment-jsdom-global"
}
}