forked from mirrorz-org/mirrorz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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
{
"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-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"pug": "^3.0.0",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.8.1"
},
"scripts": {
"debug_build": "parcel build index.html 404.html",
"build": "parcel build --no-source-maps index.html 404.html",
"postbuild": "cp -r static CNAME scripts/oh-my-mirrorz/oh-my-mirrorz.py dist",
"legacy_build": "node ./legacy/generator.js",
"start": "parcel index.html 404.html",
"full_start": "(yarn debug_build && yarn legacy_build && yarn postbuild && cd dist && python3 ../scripts/gh-cors.py)",
"lint:fix": "eslint --fix ./src --ignore-path .gitignore"
}
}