-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.48 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
{
"name": "darwinia-home",
"version": "0.1.0",
"private": true,
"dependencies": {
"@floating-ui/react": "^0.26.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/dat.gui": "^0.7.7",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.39",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/three": "^0.141.0",
"aos": "^2.3.4",
"axios": "^1.7.4",
"babel-plugin-prismjs": "^2.1.0",
"bignumber.js": "^9.0.2",
"dat.gui": "^0.7.9",
"ethers": "6.13",
"i18next": "^21.8.9",
"lodash.throttle": "^4.1.1",
"lottie-web": "^5.9.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.17.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.2",
"three": "^0.142.0",
"typescript": "^4.7.3",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "set PORT=3003 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json ./src --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/aos": "^3.0.4",
"@types/lodash.throttle": "^4.1.7",
"@types/react-syntax-highlighter": "^15.5.2",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"postcss": "^8.4.33",
"prettier": "2.6.2",
"sass": "^1.52.3",
"tailwindcss": "^3.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --ext .js,.jsx,.ts,.tsx,.json ./src --fix"
]
}
}