forked from mirrorz-org/mirrorz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 890 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
{
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10",
"@parcel/babel-plugin-transform-runtime": "^2.0.0-nightly.1823",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"parcel": "^2.0.0-beta.1",
"prettier": "^2.2.1",
"sass": "^1.32.4"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"node-sass": "^5.0.0",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.8.1"
},
"scripts": {
"start": "parcel index.html 404.html",
"build": "parcel build --no-source-maps index.html 404.html",
"lint:fix": "eslint --fix ./src --ignore-path .gitignore"
}
}