-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "emote-screensaver",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format:check": "prettier src/ --check",
"format:fix": "prettier src/ --write",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@next/third-parties": "^14.2.7",
"allsettled-polyfill": "^1.0.4",
"bootstrap": "^5.3.0",
"immutable": "^4.3.7",
"next": "^14.1.3",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "20.3.1",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"classnames": "^2.3.2",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"eslint-config-prettier": "^9.1.0",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"typescript": "^5.4.2"
}
}