-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-on",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "jest",
"lint": "eslint src",
"build": "webpack --config webpack/webpack.config.production.js --progress --hide-modules"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-react": "^6.24.1",
"connect-history-api-fallback": "^1.5.0",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"eslint": "^4.18.1",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"file-loader": "1.1.10",
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.2",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.21.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"\\.(jpeg|jpg|png|gif|svg|woff|woff2|ttf)$": "<rootDir>/__mocks__/noopMock.js"
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard-react"
],
"env": {
"node": true,
"browser": true
},
"rules": {
"jsx-quotes": [
"warn",
"prefer-double"
]
}
},
"dependencies": {
"babel-preset-env": "^1.6.1"
}
}