-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "qlab",
"version": "0.1.0",
"private": true,
"engines": {
"node": "10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"test-with-coverage": "yarn test --coverage",
"eject": "react-scripts eject",
"test-nowatch": "react-scripts test --watchAll=false",
"int": "yarn build && firebase serve",
"login": "firebase login",
"deploy": "firebase deploy --only hosting",
"emulateFunctions": "yarn --cwd ./functions/ start",
"buildFunctions": "yarn --cwd ./functions/ build",
"deployFunctions": "firebase deploy --only functions",
"testFunctions": "yarn buildFunctions && yarn --cwd ./functions/ test",
"deployRules": "firebase deploy --only firestore:rules",
"addQuiz": "node ./quiz_seeder/seed_quiz.js",
"deployProd": "export APP_VERSION='PROD' && yarn build"
},
"dependencies": {
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"dotenv": "^8.2.0",
"firebase": "^7.5.0",
"material-ui-image": "^3.2.2",
"moment": "^2.24.0",
"opentype.js": "^1.1.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-firebaseui": "^4.0.0",
"react-ratings-declarative": "^3.4.1",
"react-redux": "5.0.7",
"react-redux-firebase": "2.1.6",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-spring": "^8.0.27",
"react-three-fiber": "^3.0.16",
"recharts": "^2.0.0-beta.1",
"redux": "^4.0.4",
"redux-firestore": "^0.11.0",
"redux-thunk": "^2.3.0",
"three": "^0.111.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"firebase-admin": "^8.8.0",
"firebase-tools": "^7.8.1",
"nodemon": "^2.0.1",
"redux-mock-store": "^1.5.4"
}
}