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
|
{
"name": "generic-front",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel --port 8001 src/index.html",
"build": "parcel build src/index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"dateformat": "^4.5.1",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.14.3",
"parcel": "^2.0.0-rc.0",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"semantic-ui-react": "^2.0.3"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid"
}
}
|