-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "z1zon-todo-client",
"version": "0.1.0",
"main": "src/index.ts",
"repository": "https://github.com/z1zon/z1zon-todo-client.git",
"authors": [
{
"name": "Chanyeong Cho",
"email": "[email protected]"
},
{
"name": "Jihoon Oh",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"dev": "webpack serve",
"build": "NODE_ENV=production webpack --mode production --env=build",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook",
"test": "jest --config=jest.config.js",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@storybook/addon-actions": "^6.3.6",
"@storybook/addon-controls": "^6.3.6",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/addon-jest": "^6.3.6",
"@storybook/addon-knobs": "^6.3.0",
"@storybook/addon-links": "^6.3.6",
"@storybook/builder-webpack5": "^6.3.6",
"@storybook/manager-webpack5": "^6.3.6",
"@storybook/react": "^6.3.6",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-svg-data-uri": "^1.3.3",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"recoil": "^0.4.0",
"styled-components": "^5.3.0"
}
}