-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.19 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
{
"name": "relar",
"version": "0.19.0",
"license": "MPL-2.0",
"repository": {
"url": "https://github.com/jsmith/relar"
},
"scripts": {
"checks:app": "cd app && npm run check:formatting && npm run check:lint && npm run check:types && npm run test",
"checks:functions": "cd functions && npm run check:formatting && npm run check:lint && npm run check:types && firebase emulators:exec --only firestore \"npm run test\"",
"checks": "npm run checks:app && npm run checks:functions",
"bootstrap": "npm i && cd app && npm i && cd ../functions && npm i && cd ../native-audio && npm i && cd .. && ./link.sh",
"emulator": "firebase emulators:start --only firestore"
},
"devDependencies": {
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"esbuild": "^0.8.32",
"esbuild-register": "^1.2.1",
"eslint": "^7.17.0",
"eslint-config-restricted-globals": "^0.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"esm": "^3.2.25",
"firebase-tools": "^9.2.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"uvu": "^0.3.5"
},
"dependencies": {}
}