-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "abacus",
"license": "ISC",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\" ",
"clean-frontend": "prettier --write frontend/**/*.{ts,tsx}",
"clean-backend": "prettier --write backend/**/*.ts",
"lint-frontend": "eslint --config frontend/.eslintrc.json frontend/**/*.{ts,tsx}",
"lint-backend": "eslint --config backend/.eslintrc.json backend/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acm-mu/abacus.git"
},
"author": "",
"bugs": {
"url": "https://github.com/acm-mu/abacus/issues"
},
"homepage": "https://github.com/acm-mu/abacus#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"concurrently": "^8.0.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.8",
"typescript": ">=3.3.1 <4.5.0"
}
}