-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.75 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
{
"name": "three-web-stalker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "INLINE_RUNTIME_CHUNK=false tsc && vite build",
"preview": "vite preview",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint:code": "eslint 'src/**/*.{ts,tsx}'",
"lint:styles": "stylelint 'src/**/*.{ts,tsx}'",
"lint:formatting": "prettier --check src",
"lint:types": "tsc --noEmit",
"lint": "yarn lint:code && yarn lint:styles && yarn lint:formatting && yarn lint:types"
},
"dependencies": {
"@react-three/cannon": "^6.5.0",
"@react-three/fiber": "^8.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"three": "^0.146.0",
"three.meshline": "^1.4.0",
"valtio": "^1.7.6"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/chrome": "^0.0.202",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@types/three": "^0.146.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitejs/plugin-react": "^2.2.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.28.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"postcss": "^8.4.19",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.0",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.6.4",
"vite": "^3.2.3"
},
"packageManager": "yarn@3.3.0"
}