-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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": "mooc.fi",
"version": "1.0.0",
"description": "",
"private": true,
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@next/eslint-plugin-next": "^13.4.10",
"@types/eslint": "^8.44.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.4.2",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-custom-rules": "file:eslint-custom-rules",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-styled-components-a11y": "^2.1.3",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"scripts": {
"prettier": "prettier --write \"**/*.js\" \"**/*.ts\" \"**/*.tsx\" \"**/*.d.ts\" --cache",
"prettier-check": "prettier --list-different \"**/*.js\" \"**/*.ts\" \"**/*.tsx\" \"**/*.d.ts\" --cache",
"eslint": "eslint '*/**/*.{js,ts,tsx}'",
"eslint-pre-push": "eslint '*/**/*.{js,ts,tsx}' --no-eslintrc -c .eslintrc.pre-push.js",
"helm-lint": "helm lint ./helm",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rage/mooc.fi.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rage/mooc.fi/issues"
},
"homepage": "https://github.com/rage/mooc.fi#readme"
}