-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.36 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
{
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Aalto-LeTech/CodeClusters.git"
},
"bugs": {
"url": "https://github.com/Aalto-LeTech/CodeClusters/issues"
},
"homepage": "https://github.com/Aalto-LeTech/CodeClusters#readme",
"scripts": {
"format": "prettier --write \"*.+(js|json|yml|yaml|ts|md|graphql|mdx)\" .",
"lint:fix": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.ts,.tsx .",
"api": "concurrently --kill-others 'pnpm --filter @codeclusters/api watch' 'pnpm --filter @codeclusters/api dev'",
"client": "concurrently --kill-others 'pnpm --filter @codeclusters/client dev'",
"utils": "concurrently --kill-others 'pnpm --filter @codeclusters/types watch'",
"seed": "pnpm --filter @codeclusters/db seed",
"start": "concurrently --kill-others 'pnpm utils' 'pnpm api' 'pnpm client'"
},
"engines": {
"node": ">=16",
"pnpm": "^7.0.0"
},
"devDependencies": {
"concurrently": "^7.3.0",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1"
}
}