forked from constructorlabs/react-quizmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "react-quizmachine",
"version": "1.0.0",
"description": "Quiz app",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"babel": {
"presets": [
"babel-preset-react",
"babel-preset-env"
]
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-react-app": "^10.0.0",
"classnames": "^2.2.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"he": "^1.2.0",
"prop-types": "^15.6.2",
"react": "^16.14.0",
"react-delay": "^0.1.0",
"react-dom": "^16.14.0",
"react-redux": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"ajv": "^6.5.4",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.1",
"jest": "^22.4.2",
"node-sass": "^4.10.0",
"react-test-renderer": "^16.4.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}