-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
33
34
35
36
37
38
39
{
"name": "eikon-parcel-starter",
"version": "1.0.0",
"description": "Web projects starterkit for eikon studenrs",
"scripts": {
"clean:output": "rimraf dist",
"dev": "parcel src/index.html",
"build": "npm run clean:output && parcel build src/*.html --public-url '.'"
},
"repository": {
"type": "git",
"url": "git@github.com:eikon-frontend/starterkit.git"
},
"author": "eikon frontend development team",
"license": "ISC",
"homepage": "https://github.com/eikon-frontend/starterkit",
"parcel-namer-rewrite": {
"developmentDisable": true,
"rules": {
"(.*)\\.(css)": "css/$1.$2",
"(.*)\\.(js)": "js/$1.$2",
"(.*)\\.(woff|woff2?)": "fonts/$1.$2",
"(.*)\\.(svg|png|gif|jpg|webp)": "img/$1.$2"
}
},
"devDependencies": {
"@parcel/transformer-sass": "^2.6.2",
"parcel": "^2.6.2",
"parcel-namer-rewrite": "^2.0.0-rc.2",
"posthtml-include": "^1.7.1",
"rimraf": "^3.0.2",
"sass": "^1.42.1"
},
"dependencies": {
"bootstrap": "^5.2.3",
"gsap": "^3.11.5",
"swiper": "^6.8.4"
}
}