-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.11 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
63
64
65
66
{
"name": "signal-v-noise",
"version": "2022.11.02",
"description": "Code kata using NYT api, Cloudflare Workers, localStorage and a Service Worker",
"scripts": {
"clean": "rimraf ./docs",
"start": "npm-run-all -s clean parcel_start",
"parcel_start": "parcel 'src/*.html' --dist-dir docs",
"build": "npm-run-all -s clean parcel_build",
"parcel_build": "parcel build 'src/*.html' --dist-dir docs --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bnjmnrsh-projs/signal-v-noise.git"
},
"author": "benjmnrsh",
"license": "ISC",
"bugs": {
"url": "https://github.com/bnjmnrsh-projs/signal-v-noise/issues"
},
"homepage": "https://github.com/bnjmnrsh-projs/signal-v-noise",
"@parcel/transformer-css": {
"drafts": {
"nesting": true
}
},
"browserslist": [
"last 3 years",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@parcel/packager-raw-url": "^2.7.0",
"@parcel/transformer-webmanifest": "^2.7.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-json-schema-validator": "^4.0.2",
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-promise": "^6.0.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.7.0",
"parcel-reporter-static-files-copy": "^1.4.0",
"postcss-banner": "^4.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"stylelint": "^14.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-no-unsupported-browser-features": "^5.0.4",
"stylelint-order": "^5.0.0",
"stylelint-use-nesting": "^4.0.0",
"vitest": "^0.23.4",
"wrangler": "^3.22.3"
},
"dependencies": {
"@bnjmnrsh/satchel": "github:bnjmnrsh/satchel",
"@bnjmnrsh/toast": "github:bnjmnrsh/toast"
}
}