-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "minju-youtube-clone",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/2pow4/minju-youtube-clone.git",
"author": "kmju1997 <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"build": "npx webpack",
"build-watch": "npx webpack --watch"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.js"
],
"verbose": true
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"jest": "^24.8.0",
"react-addons-test-utils": "^15.6.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"axios": "^0.19.0",
"package.json": "^2.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
}
}