This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "ec-react15-lib",
"version": "0.7.15",
"description": "Enormous Cloud Applications Rendering Framework, version for React 0.15",
"scripts": {
"start": "webpack-dev-server --debug --hot --devtool eval-source-map --output-pathinfo --watch --colors --inline --content-base . --history-api-fallback",
"build": "npm run clean && webpack --config webpack.config.js",
"clean": "rm -f dist/*.js || true",
"test": "jest --env=jsdom --watchAll --color"
},
"repository": "https://github.com/webcerebrium/ec-react15-lib",
"keywords": [
"react",
"reactjs",
"webpack",
"enormous"
],
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"author": "Web Cerebrium <[email protected]> (https://webcerebrium.com/)",
"licence": "Apache",
"devDependencies": {
"babel-core": "*",
"babel-eslint": "^7.2.3",
"babel-jest": "^25.0.0",
"babel-loader": "*",
"babel-plugin-add-module-exports": "*",
"babel-plugin-transform-decorators-legacy": "*",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"babel-preset-stage-0": "*",
"babel-preset-stage-1": "*",
"babel-register": "*",
"chai": "^3.5.0",
"css-loader": "*",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"expect": "*",
"extract-text-webpack-plugin": "*",
"iso-morphic-style-loader": "^1.0.0",
"jest": "^25.0.0",
"react-hot-loader": "*",
"webpack": "*",
"webpack-dev-server": "*",
"webpack-livereload-plugin": "*"
},
"dependencies": {
"es6-promise": "^3.2.1",
"markdown-react-js": "^1.0.2",
"prop-types": "^15.5.8",
"react": "15.4.0",
"react-container-dimensions": "^1.3.1",
"react-dom": "15.4.0",
"react-dropzone": "^3.13.1",
"react-measure": "^1.4.5",
"react-redux": "^4.4.8",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-responsive": "^3.1.0",
"redux-thunk": "^2.1.0",
"styled-components": "^2.1.2",
"tinycolor2": "^1.4.1"
},
"library": {
"name": "ec-react15-lib",
"entry": "index.js",
"dist-node": "index.js",
"dist-web": "index.web.js",
"bundle-node": true
}
}