generated from Creative-Coding-The-Hard-Way/p5-gallery-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "etching",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Creative-Coding-The-Hard-Way/etching.git"
},
"author": "",
"license": "MIT",
"scripts": {
"develop": "npx @11ty/eleventy && parcel --public-url /etching",
"build": "npx @11ty/eleventy && parcel build",
"check": "tsc --noEmit",
"lint": "eslint",
"prepare": "husky install",
"ci": "npm run check && npm run build"
},
"source": [
"e11ty_dist/index.html",
"e11ty_dist/assets/fonts/SpecialElite.ttf",
"e11ty_dist/assets/brushes/ink-pen.png"
],
"targets": {
"default": {
"distDir": "./output",
"publicUrl": "/etching/"
}
},
"browserlist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.2",
"@parcel/transformer-webmanifest": "^2.8.2",
"@types/p5": "^1.7.5",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"parcel": "^2.8.2",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"normalize.css": "^8.0.1",
"p5": "^1.9.0"
}
}