This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "www",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "AGPL",
"main": "n.a.",
"scripts": {
"build": "next build",
"build:test": "yarn dlx cross-env@7 NODE_ENV=test next build",
"cypress": "yarn dlx cypress@9 open",
"cypress:run": "yarn dlx cypress@9 run",
"dev": "next dev",
"eslint": "eslint '{**/*,*}.{js,ts,tsx}'",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "yarn tsc:noEmit && yarn xo && yarn stylelint && next lint",
"ncu": "yarn dlx npm-check-updates@11 -u --dep='prod,dev'",
"ncu:minor": "yarn ncu -t minor",
"ncu:patch": "yarn ncu -t patch",
"postinstall": "husky install",
"prettier": "prettier 'src/**/*.{ts,tsx}'",
"release": "yarn dlx standard-version@9",
"spj": "yarn dlx sort-package-json@1 package.json",
"start": "next start",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"stylelint": "stylelint 'src/**/*.{ts,tsx}'",
"test:cypress": "yarn dlx start-server-and-test@1 start http://localhost:3000 cypress:run",
"test:jest": "yarn jest",
"test": "yarn test:jest && yarn test:cypress",
"toc": "yarn dlx markdown-toc@1 README.md -i",
"tsc:noEmit": "tsc --noEmit",
"unimported": "yarn dlx unimported@1",
"xo": "xo",
"xo:fix": "yarn xo --fix"
},
"dependencies": {
"@emotion/cache": "11.7.1",
"@emotion/react": "11.9.0",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.8.1",
"@mui/icons-material": "5.8.0",
"@mui/material": "5.8.0",
"@react-three/drei": "9.11.0",
"@react-three/fiber": "8.0.17",
"next": "12.1.6",
"next-i18next": "11.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"three": "0.140.2",
"zustand": "3.7.2"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"@emotion/babel-plugin": "^11.9.2",
"@jest/globals": "^28.1.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.34",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-loader": "^8.2.5",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.51.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.6.2",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"type-fest": "^2.12.2",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"xo": "^0.49.0"
},
"packageManager": "[email protected]"
}