-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.93 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
{
"homepage": "http://gabrieldiem.github.io/maulhardt-restoration",
"name": "maulhardt-restoration",
"version": "1.0.0",
"private": true,
"dependencies": {
"bootstrap": "^5.2.3",
"dotenv": "^16.1.3",
"parcel": "^2.8.2",
"popper.js": "^1.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2"
},
"scripts": {
"clean": "rm -rf ./dist && echo 'Cleaned old dist directory'",
"clean-local": "rm -rf ./dist-local && echo 'Cleaned old dist-local directory'",
"dev-watch": "npm run clean-local && parcel watch src/index.html src/404.html src/pages/analisis-2.html src/pages/analisis-3.html src/pages/matematica-discreta.html --dist-dir dist-local",
"dev-server": "sleep 5 && http-server ./dist-local -p 3000",
"dev": "concurrently -c \"auto\" --kill-others --names \"WATCH,SERVER\" \"npm run dev-watch\" \"npm run dev-server\"",
"build": "npm run clean && parcel build src/index.html src/404.html src/pages/analisis-2.html src/pages/analisis-3.html src/pages/matematica-discreta.html --public-url /maulhardt-restoration/",
"build-local": "npm run clean-local && parcel build src/index.html src/404.html src/pages/analisis-2.html src/pages/analisis-3.html src/pages/matematica-discreta.html --no-optimize --dist-dir dist-local",
"serve-local": "npm run build-local && http-server ./dist-local -p 3000"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.2",
"@parcel/transformer-sass": "^2.8.2",
"@parcel/transformer-webmanifest": "^2.8.2",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-react": "^7.32.2",
"http-server": "^14.1.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10"
}
}