-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "podcastr",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"server": "json-server db.json -w -d 750 -p 3333"
},
"dependencies": {
"axios": "^0.21.1",
"date-fns": "^2.21.1",
"dotenv": "^8.2.0",
"json-server": "^0.16.3",
"next": "^10.2.2",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.0.5",
"next-svgr": "^0.0.2",
"polished": "^4.1.1",
"rc-slider": "^9.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^4.2.0",
"react-spring": "^8.0.27",
"styled-components": "^5.2.1",
"swiper": "^6.5.2",
"webpack": "^5.24.2"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.1.0",
"typescript": "^4.0.3"
}
}