-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.15 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.15 KB
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
{
"name": "customquestion",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel design/index.html runtime/loader.js runtime/loader.css --https --port 1234",
"build": "npm run build:clean && npm run build:design && npm run build:runtime && npm run build:copy-static && npm run build:zip",
"build:design": "parcel build design/index.html -d dist/design --no-source-maps --public-url ./",
"build:runtime": "parcel build runtime/loader.js -d dist/runtime --no-source-maps",
"build:clean": "rimraf dist && rimraf dist-bundle",
"build:zip": "mkdirp dist-bundle && cd dist && bestzip ../dist-bundle/bundle.zip *",
"build:copy-static": "copyfiles metadata.json design/icon.svg dist/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.13",
"bestzip": "^2.1.7",
"copyfiles": "^2.4.1",
"mkdirp": "^1.0.4",
"parcel-bundler": "^1.12.4",
"rimraf": "^2.7.1"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}