-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "vanilla-parcel-boilerplate",
"version": "1.0.0",
"description": "Simple workflow starter for building vanilla JS apps",
"scripts": {
"dev": "npm run clean && parcel public/index.html --dist-dir development -p 3000",
"build": "parcel build public/*.html --dist-dir dist --public-url ./",
"clean": "rimraf ./development && rimraf -rf ./.cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradtraversy/vanilla-parcel-boilerplate.git"
},
"keywords": [
"parcel"
],
"author": "Brad Traversy",
"license": "MIT",
"bugs": {
"url": "https://github.com/bradtraversy/vanilla-parcel-boilerplate/issues"
},
"homepage": "https://github.com/bradtraversy/vanilla-parcel-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/runtime-corejs2": "^7.24.0",
"@parcel/transformer-sass": "^2.10.0",
"parcel": "^2.12.0",
"rimraf": "^3.0.2",
"sass": "^1.26.3"
},
"dependencies": {
"axios": "^1.5.1",
"caniuse-lite": "^1.0.3"
}
}