-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "codee-club",
"private": true,
"license": "UNLICENSED",
"description": "Monorepo root",
"repository": "[email protected]:codee-club/codee-club.git",
"workspaces": [
"admin",
"common",
"docs",
"functions",
"hosting"
],
"scripts": {
"bootstrap": "cd admin && yarn config:deploy emu",
"build": "lerna run build",
"clean": "lerna run clean --parallel",
"emu": "node scripts/emu.js && yarn run emulate",
"emu-imp": "cd admin && yarn backup-set && cd .. && node scripts/emu-imp.js && EMU_IMP=\"backups\" yarn run emulate",
"emu-kill": "kill-port 4000 4001 5001 9099 9199 && node scripts/emu-kill.js",
"emulate": "firebase --project=\"codee-club-emu\" emulators:start --only auth,firestore,functions,storage $( [[ ! -z \"${EMU_IMP}\" ]] && printf %s \"--import ${EMU_IMP}\" )",
"emulatte": "node scripts/emulatte.js && yarn run emulate",
"fix-root": "eslint \".*.js\" --fix && prettier --loglevel warn --write \"./*.{js,json}\" \".*.{js,json}\" \"./scripts/*.js\"",
"fix": "yarn fix-root && lerna run fix --parallel",
"lint-root": "eslint \".*.js\" && prettier --check \"./*.{js,json}\" \".*.{js,json}\" \"./scripts/*.js\" ",
"lint": "yarn lint-root && lerna run lint",
"purge": "yarn clean && lerna clean --yes && rimraf ./node_modules",
"rebuild": "lerna run rebuild",
"reset": "yarn add rimraf -D -W && yarn purge && yarn && yarn build",
"seed": "cd ./admin && yarn seed",
"serve": "cd ./hosting && yarn serve",
"test": "lerna run test --stream -- --color --verbose",
"test:ci": "lerna run test",
"up": "ncu -u && lerna exec --parallel -- ncu -u && yarn && yarn audit",
"watch": "lerna run watch --parallel"
},
"devDependencies": {
"@firebase/app-types": "^0.6.2",
"@firebase/rules-unit-testing": "^1.3.5",
"@google-cloud/firestore": "^4.12.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^33.0.1",
"eslint-plugin-unused-imports": "^1.1.1",
"eslint-plugin-vue": "^7.10.0",
"eslint-plugin-woke": "^1.0.0",
"firebase": "^8.6.5",
"firebase-admin": "^9.9.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"jest-extended": "^0.11.5",
"kill-port": "^1.6.1",
"lerna": "^4.0.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"ts-essentials": "^7.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
}
}