-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "100fastfingers",
"license": "MIT",
"author": "kosciolek",
"repository": "https://github.com/kosciolek/100fastfingers",
"description": "Cheating software for 10fastfingers.com",
"version": "0.9.0",
"private": true,
"workspaces": [
"server",
"ext",
"shared"
],
"scripts": {
"server:start": "cd server && yarn start",
"prepare": "husky install",
"lint": "eslint ext/src server/src shared/src",
"lint:fix": "prettier ext/src server/src shared/src --write && eslint ext/src server/src shared/src --fix"
},
"devDependencies": {
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}