-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "russia-win-win",
"version": "1.0.0",
"scripts": {
"dev": "wireit",
"build": "wireit",
"start": "wireit",
"lint": "wireit"
},
"wireit": {
"dev": {
"command": "next dev",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "next build",
"env": {
"NODE_ENV": "production"
},
"cache": {
"folder": ".next/cache"
}
},
"start": {
"command": "next start",
"env": {
"NODE_ENV": "production"
}
},
"lint": {
"command": "next lint",
"env": {
"NODE_ENV": "development"
}
}
},
"dependencies": {
"@types/node": "20.14.11",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"million": "^2.6.4",
"next": "^14.2.10",
"normalize.css": "^8.0.1",
"prettier": "^3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^6.1.13",
"stylis": "^4.3.4",
"typescript": "5.5.3"
},
"packageManager": "yarn@4.0.2",
"devDependencies": {
"wireit": "^0.14.8"
}
}