-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.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
{
"name": "nexus-voting-module",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run lint && vite build && npm run build:nexus",
"build:nexus": "webpack --mode=production",
"lint": "eslint . --fix",
"lint:error": "eslint . --quiet",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.11",
"date-fns": "^2.29.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/preset-react": "^7.18.6",
"@eslint/js": "^9.9.1",
"@vitejs/plugin-react": "^4.3.1",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.0",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"style-loader": "^3.3.0",
"vite": "^5.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
}
}