-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.89 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
{
"name": "budget-app",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"dev:server": "json-server --watch db.json",
"sw": "workbox generate:sw",
"copy-assets": "cp assets/* dist/assets",
"build": "parcel build src/index.html --public-url ./ && npm run copy-assets && npm run sw",
"hotel": "parcel src/index.html -p $PORT",
"start": "parcel src/index.html",
"publish": "surge ./dist https://monthly-budget.surge.sh",
"deploy": "npm run build && npm run publish",
"lint": "eslint src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@emotion/babel-preset-css-prop": "^10.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.1.2",
"babel-plugin-emotion": "^10.0.33",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.21.5",
"json-server": "^0.16.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"surge": "^0.21.6",
"workbox-cli": "^2.1.2"
},
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"fecha": "^4.2.0",
"nuka-carousel": "^4.7.2",
"partial.lenses": "^13.2.1",
"react": "^16.14.0",
"react-content-loader": "^2.0.2",
"react-dom": "^16.14.0",
"react-hot-loader": "^3.1.3",
"react-loadable": "^5.5.0",
"react-router": "^4.2.0",
"thwack": "^0.6.1",
"unissist": "^1.4.0",
"unistore": "^3.5.2"
}
}