-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "chrome-redux-tutorial",
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"roots": [
"<rootDir>/src/pages/popup/"
]
},
"description": "Redux Chrome extension example",
"repository": {
"type": "git",
"url": "git+https://github.com/pierroberto/chrome-navigator.git"
},
"version": "0.0.1",
"author": {
"name": "Your Name",
"email": "user@server.com"
},
"license": "MIT",
"scripts": {
"build": "webpack --watch --progress",
"test": "jest --coverage",
"test:watch": "npm test --watch"
},
"dependencies": {
"axios": "^0.16.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"file-loader": "^0.11.2",
"lodash": "^4.17.4",
"react": "^16.4.1",
"react-chrome-redux": "^1.3.3",
"react-dom": "^16.4.1",
"react-redux": "^4.4.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"truncate": "^2.0.0",
"url-loader": "^0.5.9",
"uuid": "^3.1.0",
"webpack-css-loaders": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.4",
"prettier": "1.15.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.5.4",
"webpack": "^3.5.3",
"write-file-webpack-plugin": "^3.4.2"
}
}