-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@fabernovel/heart-website",
"version": "1.0.0",
"description": "Heart's website",
"homepage": "https://heart.fabernovel.com",
"bugs": {
"url": "https://github.com/faberNovel/heart-website/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:faberNovel/heart-website.git"
},
"license": "MIT",
"contributors": [
"Julien Roche <[email protected]>",
"Bastien Gatellier <[email protected]>",
"Julien Liottier",
"Fatoumata Valbert-Geraud"
],
"scripts": {
"build": "rimraf dist && run-s build:svg && parcel build src/index.pug",
"build:svg": "svg-sprite --config sprite-config.json src/assets/icons/sprite/*.svg",
"lint": "pug-lint src/ && stylelint src/**/*.scss",
"start": "run-s build:svg && parcel src/index.pug"
},
"devDependencies": {
"@parcel/config-default": "^2.10.1",
"@parcel/core": "^2.10.1",
"@parcel/packager-raw-url": "2.10.1",
"@parcel/transformer-pug": "2.10.1",
"@parcel/transformer-sass": "2.10.1",
"@parcel/transformer-webmanifest": "2.10.1",
"bulma": "^0.9.4",
"npm-run-all": "^4.1.5",
"parcel": "^2.10.1",
"parcel-namer-custom": "^0.2.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.4.31",
"pug": "^3.0.2",
"pug-lint": "^2.7.0",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.2.1",
"svg-sprite": "^2.0.2",
"typescript": "^5.2.2"
},
"engines": {
"node": "^18.0.0"
},
"browserslist": "> 0.25%, not dead",
"packageManager": "[email protected]",
"staticFiles": {
"staticPath": "static"
},
"parcel-namer-custom": {
"static/.*\\.[a-z]+$": "[name].[ext]"
}
}