-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 717 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 717 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
31
{
"name": "parcel-templete-basic",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "parcel index.html --port 1216",
"build": "parcel build index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@parcel/transformer-sass": "^2.12.0",
"autoprefixer": "^9.8.8",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0",
"postcss": "^8.4.39",
"sass": "^1.77.7"
},
"staticFiles": {
"staticPath": "static"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}