-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "lunch-games",
"version": "1.0.1",
"description": "",
"main": "./src/index.html",
"author": "",
"license": "ISC",
"scripts": {
"start": "npm install && run-p dev:*",
"deploy": "npm run build && firebase deploy",
"build": "tsc && parcel build ./src/index.html --public-url=./",
"dev:server": "parcel ./src/index.html --no-autoinstall --port 3333 --log-level 0 --no-cache",
"dev:lint": "tsc -w",
"precommit": "precise-commits"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-jsx": "^2.2.8",
"firebase-cli": "^1.2.0",
"firebase-tools": "^7.3.0",
"husky": "^1.3.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"sass": "^1.22.10",
"typescript": "^3.6.2"
},
"dependencies": {
"@material-ui/core": "^4.3.3",
"@material-ui/styles": "^4.3.3",
"@types/classnames": "^2.2.9",
"@types/node": "^12.7.2",
"@types/ramda": "^0.25.51",
"autoprefixer": "^9.6.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"firebase": "^6.4.2",
"postcss-modules": "^1.4.1",
"ramda": "^0.26.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-firebase-hooks": "^1.2.1",
"styled-jsx": "^3.2.1"
}
}