-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
{
"name": "ddd",
"version": "1.0.0",
"private": false,
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "eslint --fix \"src/**/*.{js,jsx}\" --ext jsconfig.json",
"prettier": "prettier --list-different '**/*.{js,jsx,md}'",
"dev": "next dev -p 3000",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start"
},
"dependencies": {
"@badrap/bar-of-progress": "^0.1.2",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.3",
"@reach/slider": "^0.16.0",
"@react-three/drei": "^7.3.1",
"@react-three/fiber": "^7.0.6",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tippyjs/react": "^4.2.5",
"antd": "^4.16.10",
"big.js": "^6.1.1",
"file-saver": "^2.0.5",
"ipfs-http-client": "^45.0.0",
"leva": "^0.9.13",
"near-api-js": "^0.44.2",
"next": "^11.0.1",
"nightwind": "^1.1.12",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.1.0",
"tailwindcss": "^2.2.7",
"three": "^0.131.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@next/bundle-analyzer": "^11.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.9.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwind": "^0.2.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"typescript": "^4.5.5"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,md}": "prettier --write",
"*.js": "eslint --cache --fix"
}
}