-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.95 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.95 KB
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
{
"name": "straightouttacrompton.dev",
"version": "1.0.0",
"description": "StraightOuttaCrompton's site",
"packageManager": "yarn@3.2.4",
"scripts": {
"start": "ROOT_URL=http://localhost:1234 NODE_ENV=development node ./parcel.js",
"build": "NODE_ENV=production node ./parcel.js",
"build:sw": "rm -rf dist/serviceWorker.js && workbox generateSW workbox-config.js",
"postBundle": "cp public/robots.txt dist/robots.txt && cp public/sitemap.xml dist/sitemap.xml",
"clean": "npm run clean:parcel && npm run clean:install",
"clean:parcel": "rm -rf .cache dist",
"clean:install": "rm -rf node_modules",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StraightOuttaCrompton/StraightOuttaCrompton.dev.git"
},
"author": "StraightOuttaCrompton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/StraightOuttaCrompton/StraightOuttaCrompton.dev/issues"
},
"homepage": "https://StraightOuttaCrompton.dev",
"dependencies": {
"@material/button": "^8.0.0",
"@material/icon-button": "^8.0.0",
"@material/switch": "^8.0.0",
"@material/tooltip": "^8.0.0",
"@material/typography": "^8.0.0",
"particles.js": "^2.0.0",
"workbox-cli": "^6.0.2"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel-bundler": "^1.12.5",
"parcel-plugin-ogimage": "^1.2.0",
"posthtml-expressions": "^1.7.1",
"posthtml-modules": "^0.9.0",
"posthtml-noopener": "^1.0.5",
"prettier": "^2.7.1",
"sass": "^1.29.0",
"typescript": "^4.1.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,scss,css,html,md,yml}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4
}
}