-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "formulabun-web",
"version": "1.0.0",
"description": "main website of formulabun",
"main": "index.js",
"repository": "https://github.com/formulabun/website",
"author": "Fl_GUI",
"license": "MIT",
"private": false,
"dependencies": {
"babel-plugin-styled-components": "latest",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"next": "^11.1.3",
"node-fetch": "^3.0.0",
"prop-types": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"srb2kartinfoparse": "^1.1.7",
"styled-components": "latest",
"swr": "^1.0.1",
"webpack": "latest"
},
"devDependencies": {
"babel-eslint": "latest",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-config-mcansh": "^2.1.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"prettier": "^2.5.1"
},
"optionalDependencies": {
"fsevents": "^2.0.7"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"clean": "rm -rf .next/",
"lint": "prettier --write **/*.js"
}
}