-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.5 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
{
"name": "flask-react",
"version": "1.0.0",
"main": "index.js",
"author": "Spotlight PA",
"license": "MIT",
"scripts": {
"clean": "find dist -mindepth 1 -delete || mkdir dist",
"build": "parcel build client/index.html --no-content-hash --experimental-scope-hoisting",
"flask": "venv/bin/flask run --no-debugger",
"flask:dev": "npm run start & export BUILD_DIR=.tmp && npm run flask",
"flask:prod": "npm run clean && npm run build && npm run flask",
"deploy": "npm run clean && npm run build && git add ./dist && git commit -m 'Build frontend'; git push heroku master",
"start": "parcel client/index.html -d .tmp"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"bulma": "^0.7.5",
"prop-types": "^15.7.2",
"raf": "3.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-spinners": "^0.6.1",
"uninstall": "0.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-plugin-emotion": "^10.0.33",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"prettier": "2.0.5",
"sass": "^1.26.10"
}
}