-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.64 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
{
"name": "gauntlet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "(cd client && npm install) && (cd functions && npm install)",
"build": "cd client && npm run build",
"start:functions": "firebase functions:config:set gauntlet.env=\"development\" && firebase serve --only functions",
"start": "concurrently \"npm run start:functions\" \"cd client && npm start\"",
"start:dev": "REACT_APP_SERVER_LOCATION=local concurrently \"(cd functions && npm run start:dev)\" \"cd client && npm start\"",
"start:debug": "REACT_APP_SERVER_LOCATION=local concurrently \"(cd functions && npm run start:debug)\" \"cd client && npm start\"",
"serve": "firebase serve",
"deploy": "firebase deploy",
"test": "(cd client && npm t) && (cd functions && npm t)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synthesists/gauntlet.git"
},
"author": "Craig Forrest (https://github.com/CForrest97), Matthew Emerson (https://github.com/mattemerson1), Richard Waller (https://github.com/rwalle61)",
"license": "ISC",
"bugs": {
"url": "https://github.com/synthesists/gauntlet/issues"
},
"homepage": "https://github.com/synthesists/gauntlet#readme",
"dependencies": {
"concurrently": "^5.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0"
}
}