-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 856 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 856 Bytes
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": "davy.tech",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
},
"scripts": {
"relocate-index": "mv ./dist/entry.html ./index.html",
"parcel-dev": "parcel entry.html",
"parcel-prod": "parcel build entry.html --public-url ./dist/",
"dev": "npm run parcel-dev",
"start": "npm run parcel-dev",
"prod": "npm run parcel-prod && npm run relocate-index"
},
"devDependencies": {
"@parcel/transformer-raw": "^2.13.3",
"@parcel/transformer-sass": "^2.13.3",
"nodemon": "^2.0.3",
"parcel": "^2.9.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"process": "^0.11.10",
"sass": "^1.70.0"
}
}