-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
{
"name": "conf-twitter-bot",
"version": "0.0.1",
"description": "CS Conference Twitter Bot",
"author": {
"name": "Stefan Marr",
"email": "git@stefan-marr.de"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"concurrently": "^7.4.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.30.1",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"prettier-plugin-prisma": "^4.2.0",
"typescript": "4.5.4"
},
"scripts": {
"start": "concurrently \"cd backend && npm start\" \"cd frontend && npm start\"",
"install-packages": "npm install && concurrently \"cd backend && npm install\" \"cd frontend && npm install\"",
"format": "prettier --config .prettierrc {backend,tests,resources}/**/*.{ts,js} --write",
"verify": "npm run lint",
"lint": "npx eslint . --fix --ext .js,.jsx,.ts,.tsx"
}
}