blob: 5c0780456782a8eaf7dda18e73ed02f79441f023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "parcel build src/*.html -d dist",
"dev": "parcel -p 5000 --hmr-port 40000 src/*.html",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"axios": "^0.19.2",
"jquery": "^3.5.0",
"js-cookie": "^2.2.1"
}
}
|