-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.44 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
{
"name": "midnight-train",
"scripts": {
"serve": "concurrently \"cd functions; tsc --watch\" \"firebase serve -o 0.0.0.0\" \"cd app; parcel serve index.html\"",
"build:app": "cd app; parcel build --experimental-scope-hoisting index.html",
"build:functions": "cd functions; tsc",
"build": "concurrently \"npm run build:app\" \"npm run build:functions\"",
"watch:functions": "cd functions; tsc --watch",
"deploy:app": "npm run lint && npm run build && firebase deploy --only hosting",
"deploy:functions": "npm run lint && firebase deploy --only functions",
"deploy": "npm run lint && npm run build && firebase deploy",
"lint": "eslint . --max-warnings=0 --ext .ts,.tsx,.js",
"postinstall": "cd functions; npm install; cd ../app; npm install"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@types/csv-parse": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.1.0",
"csv-parse": "^4.8.9",
"eslint": "^6.8.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"firebase-tools": "^8.1.1",
"husky": "^4.2.5",
"parcel": "^1.12.4",
"prettier": "^2.0.4",
"protobufjs": "^6.9.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}