forked from grouparoo/grouparoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.48 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
{
"author": "Grouparoo Inc <[email protected]>",
"name": "@grouparoo/grouparoo",
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE.txt",
"private": true,
"engines": {
"node": ">=12.0.0"
},
"description": "The main Grouparoo Application. Learn more at www.grouparoo.com.",
"repository": {
"type": "git",
"url": "git+https://github.com/grouparoo/grouparoo.git"
},
"devDependencies": {
"glob": "7.1.7",
"lerna": "4.0.0",
"lerna-changelog": "2.1.0",
"license-checker": "github:grouparoo/license-checker",
"npm-check-updates": "11.8.4",
"prettier": "2.3.2"
},
"scripts": {
"preinstall": "./bin/preinstall",
"license-checker": "./tools/license-checker/check",
"spell-checker": "./tools/spell-checker/check",
"lint": "pnpm run --stream -r lint --workspace-concurrency=2 --filter !'@grouparoo/grouparoo'",
"test": "pnpm run test --stream --workspace-concurrency=1 --filter !'@grouparoo/grouparoo'",
"nuke": "rm -rf pnpm-lock.yaml && rm -rf node_modules && rm -rf core/node_modules rm -rf ui/*/node_modules && rm -rf cli/node_modules && rm -rf plugins/*/*/node_modules && rm -rf apps/*/node_modules && rm -rf core/dist && rm -rf cli/dist && rm -rf plugins/*/*/dist && rm -rf ui/*/.next",
"update": "npm-check-updates -u && pnpm exec -- npm-check-updates -u && npm run nuke && pnpm install",
"heroku-prebuild": "npm install -g pnpm && pnpm --version",
"heroku-postbuild": "pnpm install && rm -rf ui/*/.next/cache/*"
}
}