-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 720 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 720 Bytes
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
{
"name": "weatherflash",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 8080",
"lint": "yarn run eslint '**/*.tsx' && yarn run stylelint '**/*.scss'"
},
"dependencies": {
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-moment": "^1.0.0"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.13.0",
"eslint-plugin-unused-imports": "^1.0.0",
"sass": "^1.32.0",
"stylelint": "^13.9.0",
"typescript": "^4.0.5"
}
}