-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"homepage": "https://clowns-party.github.io/animeover-frontend/",
"name": "animeover",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"start:as-build": "next start",
"heroku-postbuild": "npm run build",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@redux-saga/core": "^1.1.3",
"@storybook/react": "^6.3.4",
"@types/lodash.isequal": "^4.5.5",
"@types/styled-components": "^5.1.10",
"antd": "^4.14.0",
"auto-bind": "^4.0.0",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"cookie": "^0.4.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"next": "10.1.3",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^6.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-portal": "^4.2.1",
"react-redux": "^7.2.2",
"react-use": "^17.2.4",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"sass": "^1.32.8",
"styled-components": "^5.3.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.13.14",
"@next/eslint-plugin-next": "^10.1.2",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^3.2.3",
"prettier": "^2.2.1",
"prettier-eslint-cli": "^5.0.1",
"style-loader": "^3.0.0"
}
}