-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.75 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
{
"name": "react-redux-starter-template",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.3",
"connected-react-router": "^4.4.1",
"enzyme": "^3.6.0",
"jest": "^23.5.0",
"jquery": "^3.3.1",
"popper.js": "^1.14.4",
"radium": "^0.24.1",
"react": "^16.5.0",
"react-bootstrap": "^0.32.3",
"react-dom": "^16.5.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-thunk": "^1.0.0",
"redux": "^3.7.2",
"redux-form": "^7.4.2",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.3.0",
"sane-email-validation": "^1.1.0"
},
"scripts": {
"start": "react-scripts start",
"dev": "webpack-dev-server --content-base --inline --hot",
"build": "react-scripts build",
"test": "jest",
"test:watch": "jest --watch",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"redux-mock-store": "^1.5.3"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/setupEnzyme.js",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/"
]
}
}