-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.51 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.51 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
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
108
{
"name": "nem-website",
"version": "0.1.0",
"description": "",
"scripts": {
"dev": "craco start",
"build": "craco build",
"test": "craco test",
"test:jenkins": "craco test",
"eject": "craco eject",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0 && stylelint \"**/*.less\"",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx,.json --fix && stylelint \"**/*.less\" --fix",
"prettier-format": "prettier --config .prettierrc '**/*.{json,js,jsx,ts,tsx,css,scss,md}' --write"
},
"private": true,
"dependencies": {
"@craco/craco": "^7.1.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@react-spring/three": "^9.2.3",
"@react-three/drei": "^8.20.2",
"@react-three/fiber": "^6.2.2",
"@types/react-scrollable-anchor": "^0.6.1",
"@types/three": "^0.152.1",
"ant-design": "^1.0.0",
"antd": "^5.15.1",
"axios": "^1.6.3",
"craco-antd": "^2.0.0",
"craco-plugin-scoped-css": "^1.1.1",
"i": "^0.3.7",
"i18n-js": "^4.2.3",
"meshline": "^3.1.6",
"npm": "^10.5.2",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^9.5.3",
"react-mount-animation": "0.0.11",
"react-navigation": "^5.0.0",
"react-pageflip": "^2.0.3",
"react-redux": "^8.0.5",
"react-router-dom": "^6.20.0",
"react-scripts": "5.0.1",
"react-scrollable-anchor": "^0.6.1",
"react-spring": "^9.7.1",
"react-vuex-store": "^1.0.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"stylelint-config-rational-order": "^0.1.2",
"three": "^0.153.0",
"three.meshline": "^1.4.0",
"threejs-meshline": "^2.0.12",
"typescript": "^5.4.3",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@types/i18n-js": "^3.8.4",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^7.5.0",
"craco-plugin-react-hot-reload": "^0.1.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.23.2",
"husky": "^8.0.3",
"lint": "^0.8.19",
"lint-staged": "^15.2.1",
"postcss-less": "^6.0.0",
"prettier": "^3.2.5",
"prettier-stylelint": "^0.4.2",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^6.0.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, jsx, ts, tsx, json, less}": [
"npm run lint:fix"
]
}
}