-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 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
50
51
52
53
54
55
56
{
"name": "upgrade-client",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DSM-Upgrade/Client",
"author": "CutyApple <dbtldhs0915@naver.com>",
"license": "MIT",
"dependencies": {
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"core-js": "^3.8.3",
"dotenv-webpack": "^7.0.2",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.1",
"webpack-dev-server": "3.11.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/react": "^6.2.8",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.1",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"jest-plugin-context": "^2.9.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
},
"scripts": {
"start": "webpack-dev-server --mode development --hot --port 8888",
"build": "webpack --mode production",
"test": "jest --config jest.config.js --watchAll --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-test": "jest --config jest.config.js"
}
}