-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "dungeon.liam.codes",
"private": true,
"description": "Card-based dungeon crawler with monsters, swords and stuff",
"author": "Liam Howell <liam@liam.codes>",
"homepage": "https://dungeon.liam.codes",
"repository": "https://github.com/eels/dungeon.liam.codes",
"bugs": "https://github.com/eels/dungeon.liam.codes/issues",
"scripts": {
"build": "parcel build ./src/index.html",
"clean": "rimraf ./dist",
"dev": "parcel serve ./src/index.html",
"format": "prettier './src/**/*.{js,scss}' --check",
"format:fix": "yarn format --write",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint './src/**/*.scss' --cache",
"lint:css:fix": "yarn lint:css --fix",
"lint:js": "eslint './src/**/*.js' --cache",
"lint:js:fix": "yarn lint:js --fix",
"minify:img": "imagemin ./src/resources/img/ -o ./src/resources/img/",
"minify:static": "imagemin ./src/static/ -o ./src/static/",
"prepare": "husky install"
},
"browserslist": [
"defaults"
],
"alias": {
"components": "./src/components",
"data": "./src/data",
"events": "./src/events",
"functions": "./src/functions",
"instances": "./src/instances",
"lib": "./src/lib",
"resources": "./src/resources",
"static": "./src/static",
"utilities": "./src/utilities"
},
"dependencies": {
"normalize.css": "8.0.1",
"workbox-cacheable-response": "6.5.4",
"workbox-expiration": "6.5.4",
"workbox-routing": "6.5.4",
"workbox-strategies": "6.5.4"
},
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@parcel/packager-raw-url": "2.8.3",
"@parcel/transformer-sass": "2.8.3",
"@parcel/transformer-webmanifest": "2.8.3",
"eslint": "8.36.0",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-standard": "5.0.0",
"husky": "8.0.3",
"imagemin-cli": "7.0.0",
"lint-staged": "13.2.0",
"parcel": "2.8.3",
"prettier": "2.8.7",
"rimraf": "4.4.1",
"sass": "1.60.0",
"stylelint": "14.16.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-recommended-scss": "7.0.0",
"stylelint-config-standard": "26.0.0",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.5.0"
}
}