-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "watch-anime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start -p 3199",
"pm2:start": "pm2 start yarn --name \"watch-anime\" --interpreter bash -- start",
"pm2:stop": "pm2 stop watch-anime",
"pm2:monit": "pm2 monit watch-anime",
"pm2:list": "pm2 list"
},
"dependencies": {
"@material/react-material-icon": "^0.15.0",
"axios": "0.21.1",
"next": "^12.0.9",
"next-i18next": "^8.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"use-debounce": "^3.4.3"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "^4.0.1",
"sass": "^1.49.0"
}
}