-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.39 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
{
"name": "coderscamp2021.project.react",
"version": "0.0.0",
"description": "",
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCamp2021-HK/CodersCamp2021.Project.React.git"
},
"bugs": {
"url": "https://github.com/CodersCamp2021-HK/CodersCamp2021.Project.React/issues"
},
"homepage": "https://github.com/CodersCamp2021-HK/CodersCamp2021.Project.React#readme",
"engines": {
"yarn": "3.1.1",
"node": "16.x"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"lint": "yarn eslint ./src/**/*.js?(x)",
"test:dev": "jest --watch --runInBand",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/eslint": "^8.2.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/prettier": "^2.4.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react": "^1.1.4",
"babel-loader": "^8.2.3",
"canvas": "^2.8.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"eslint-plugin-testing-library": "^5.0.1",
"jest": "^27.4.7",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.5.1",
"vite": "^2.7.10"
}
}