-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 871 Bytes
/
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
{
"name": "pure-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write \" src /**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"dev": "parcel src/index.html",
"build": "NODE_ENV=production parcel build dist/index.html --public-url ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.2.1"
},
"dependencies": {
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"javascript-time-ago": "^2.3.4",
"parcel": "^2.0.0-beta.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}