-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.81 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
84
85
86
87
88
{
"name": "react-slides",
"version": "2.3.0",
"main": "entry.jsx",
"repository": "https://github.com/quirk0o/react-slides.git",
"author": "quirk0o",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=${NODE_ENV:-development} API_URL=${API_URL:-http://localhost:4567} PORT=${PORT:-9000} webpack-dev-server --client-log-level error",
"package": "NODE_ENV=${NODE_ENV:-production} webpack -p --progress",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@babel/standalone": "^7.3.1",
"autoprefixer": "^9.4.6",
"babel-loader": "^8.0.5",
"babel-plugin-glamorous-displayname": "^2.2.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.3",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "^1.0.0-rc.2",
"chroma-js": "^2.0.2",
"classnames": "^2.2.6",
"codemirror": "^5.43.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-to-json": "^3.3.5",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"glamor": "^3.0.0-3",
"glamorous": "^5.0.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.1",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"raw-loader": "^1.0.0",
"react": "^16.8.4",
"react-ace": "^6.3.2",
"react-addons-test-utils": "^15.6.2",
"react-codemirror": "^1.0.0",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.8.4",
"react-hot-loader": "4.6.3",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"styled-components": "^4.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "<rootDir>/test/__mocks__/styleMock.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/index.js"
},
"dependencies": {
"rxjs": "^6.4.0"
}
}