This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.59 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
47
48
49
50
{
"name": "midspace",
"version": "1.0.0",
"description": "Development setup",
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"heroku-postbuild": "cd $(dirname $PROCFILE) && pnpm build",
"lint-staged": "lint-staged",
"prepare": "node ./prepare.js",
"hasura:console-when-ready": "cd hasura && npx wait-on http-get://localhost:8080/v1/version && hasura console --envfile ./hasura/.env.local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdr-app/clowdr.git"
},
"author": "Clowdr CIC",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/clowdr-app/clowdr/issues"
},
"homepage": "https://github.com/clowdr-app/clowdr#readme",
"dependencies": {
"typescript": "^4.5.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"foreman": "^3.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"tsc-watch": "^4.6.0",
"wait-on": "^6.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,json,md}": "prettier --write"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.x",
"pnpm": "^7.x.x"
}
}