-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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": "my-app",
"private": true,
"scripts": {
"dev": "yarn install && next dev",
"build": "yarn install && next build && next export",
"start": "yarn install && next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@lit-labs/react": "^1.0.2",
"@react-three/fiber": "^8.0.6",
"ahooks": "^3.2.0",
"axios": "^0.26.1",
"immer": "^9.0.12",
"lit": "^2.2.1",
"mobx": "^6.5.0",
"next": "12.1.2",
"next-plugin-antd-less": "^1.8.0",
"qs": "^6.10.3",
"ramda": "^0.28.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-intl": "^5.24.3",
"react-spring": "^9.4.4",
"rxjs": "^7.5.5",
"three": "^0.139.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "16.11.6",
"@types/ramda": "^0.27.64",
"@types/react": "17.0.34",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-loader": "^8.2.4",
"babel-plugin-import": "^1.13.3",
"eslint": "8",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "12.1.2",
"eslint-plugin-storybook": "^0.5.7",
"jest": "^27.5.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"msw": "^0.39.2",
"msw-storybook-addon": "^1.6.1",
"prettier": "^2.5.1",
"r3f-perf": "^6.0.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.5.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"msw": {
"workerDirectory": "public"
}
}