-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.96 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
{
"name": "rob.gant.ninja",
"version": "1.2.0",
"private": true,
"description": "Personal Website",
"homepage": "https://rob.gant.ninja",
"bugs": {
"url": "https://github.com/rgant/rob.gant.ninja/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgant/rob.gant.ninja.git"
},
"license": "MIT",
"author": "J Rob Gant <rgant@alum.wpi.edu>",
"source": "src/index.html",
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "parcel build --no-cache './src/*.html'",
"clean": "rm -rf ./.parcel-cache",
"predeploy": "npm run build",
"deploy": "terraform apply",
"lint": "npm run lint:js; npm run lint:styles",
"lint:js": "eslint ./src",
"lint:styles": "stylelint './src/css/'",
"start": "parcel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.13.3",
"@parcel/transformer-webmanifest": "^2.13.3",
"@stylistic/stylelint-plugin": "^3.1.2",
"eslint": "^9.20.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"parcel": "^2.13.3",
"parcel-namer-preserve-path": "file:packages/parcel-namer-preserve-path",
"parcel-reporter-copy-well-known": "file:packages/parcel-reporter-copy-well-known",
"parcel-resolver-absolute-paths": "file:packages/parcel-resolver-absolute-paths",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"stylelint-order": "^6.0.4",
"stylelint-selector-tag-no-without-class": "^3.0.1",
"svgo": "^3.3.2"
},
"engines": {
"node": ">= 22.0.0",
"npm": ">= 10.0.0",
"parcel": "^2.5.0"
}
}