-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.3 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
40
41
{
"private": true,
"scripts": {
"dev-server": "parcel serve frontend/index.html --dist-dir=public --port=80",
"build": "npm run clean && parcel build frontend/index.html --dist-dir=public --no-source-maps",
"build-production": "[ \"$BASE_URL\" != '$BASE_URL' ] && npm run build -- --public-url=$BASE_URL",
"clean": "rimraf 'public/*' 'public/.*'"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"events": "^3.3.0",
"jquery": "^3.6.0",
"jquery-contextmenu": "^2.9.2",
"ogv": "^1.8.9",
"store2": "^2.12.0",
"underscore": "^1.13.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@parcel/optimizer-data-url": "^2.7.0",
"@parcel/transformer-inline-string": "^2.7.0",
"@parcel/transformer-sass": "^2.7.0",
"core-js": "^3.26.0",
"parcel": "^2.7.0",
"parcel-reporter-static-files-copy": "github:elwin013/parcel-reporter-static-files-copy#pull/21",
"rimraf": "^3.0.2",
"sass": "^1.55.0"
},
"staticFiles": [
{
"staticPath": "frontend/static"
},
{
"staticPath": "node_modules/ogv/dist",
"staticOutPath": "ogv"
}
],
"browserslist": [
"last 1 version"
]
}