-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "react.parcel.template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/andreiggr/react.parcel.template.git"
},
"scripts": {
"start": "npx parcel serve ./src/apps/index.html",
"build": "find ./dist/ -type f ! -iname '*.html' -delete; npx parcel build --public-url ./++resource++react.parcel.template.react/ ./src/apps/*.html",
"develop": "find ./dist/ -type f ! -iname '*.html' -delete; NODE_ENV=development npx parcel build --public-url ./++resource++react.parcel.template.react/ ./src/apps/*.html"
},
"keywords": [],
"author": "Andrei Grigore",
"license": "GPL",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-react": "^7.12.5",
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"styled-components": "^5.2.1"
},
"dependencies": {
"@parcel/transformer-babel": "^2.0.0-alpha.3",
"axios": "^0.21.0",
"corejs": "^1.0.0",
"react": "^16.14.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.2.1",
"whatwg-fetch": "^3.5.0"
}
}