-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "sec-kensyu-2020",
"version": "1.0.0",
"description": "sec-kensyu-2020",
"main": "index.js",
"scripts": {
"dev": "scripts/dev.sh",
"build": "scripts/build.sh",
"start": "next start",
"export": "next export",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore ."
},
"keywords": [],
"author": "oliver",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.31",
"@types/react": "^16.9.26",
"firebase-tools": "^8.0.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.47",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"firebase": "^7.13.0",
"next": "^9.3.2",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}