-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint src/**/*.{js,jsx,ts,tsx}",
"prettier": "prettier src/**/*.{js,jsx,ts,tsx}",
"style": "stylelint src/**/*.{scss,css}",
"eslint:fix": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
"prettier:fix": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"style:fix": "stylelint --fix src/**/*.{scss,css}",
"check": "npm run eslint && npm run prettier && npm run style",
"format": "npm run eslint:fix && npm run prettier:fix && npm run style:fix"
},
"dependencies": {
"@react-spring/three": "^9.4.3",
"@react-three/drei": "^8.10.6",
"@react-three/fiber": "^7.0.26",
"@react-three/postprocessing": "^2.1.3",
"dotenv": "^16.0.0",
"microcms-js-sdk": "^2.0.0",
"next": "^12.1.0",
"next-transpile-modules": "^9.0.0",
"postprocessing": "^6.24.0",
"prop-types": "^15.8.1",
"react": "17.x",
"react-dom": "17.x",
"react-icon": "^1.0.0",
"react-icons": "^4.3.1",
"react-spring": "^9.4.3",
"react-style-proptype": "^3.2.2",
"sass": "^1.49.8",
"simplex-noise": "^3.0.1",
"three": "^0.137.5"
},
"devDependencies": {
"@types/node": "^17.0.19",
"@types/react": "^17.0.39",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"glslify-loader": "^2.0.0",
"postcss": "^8.4.6",
"prettier": "2.5.1",
"raw-loader": "^4.0.2",
"stylelint": "^14.5.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1"
},
"volta": {
"node": "18.18.0"
}
}