-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.65 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
79
80
81
82
83
84
85
{
"name": "upstatement-public-library",
"description": "A searchable catalog of information, lessons, and exercises on learning to build websites.",
"contributors": [
{
"name": "Brittany Chiang",
"email": "[email protected] ",
"url": "https://brittanychiang.com"
},
{
"name": "Alec Marcus",
"email": "[email protected]",
"url": "https://alecmarc.us/"
},
{
"name": "Stephanie Lee",
"email": "[email protected]",
"url": "http://stephalee.com/"
}
],
"license": "MIT",
"homepage": "https://library.upstatement.com",
"author": "Upstatement",
"repository": {
"type": "git",
"url": "git+https://github.com/upstatement/ups-public-library.git"
},
"version": "2.0.0",
"scripts": {
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"debug": "DEBUG=* eleventy",
"start": "npm-run-all -p watch:*",
"build": "NODE_ENV=production npm-run-all -s build:styles build:scripts build:eleventy",
"start:netlify": "NETLIFY=true CONTEXT=production URL=http://localhost:8888 netlify dev",
"sass": "sass --style=compressed src/assets/styles/app.scss:_site/assets/styles/app.css",
"watch:eleventy": "eleventy --serve --quiet",
"watch:styles": "npm run sass -- --watch src/pages:_site/assets/styles src/_includes:_site/assets/styles",
"watch:scripts": "parcel watch ./src/assets/scripts/app.js --out-dir ./bundle --no-source-maps --no-hmr",
"build:eleventy": "eleventy",
"build:styles": "npm run sass",
"build:scripts": "parcel build ./src/assets/scripts/app.js --out-dir ./bundle --no-source-maps",
"temples": "temples"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "./scripts/last_modified.sh && lint-staged"
}
},
"dependencies": {
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"eleventy-plugin-nesting-toc": "^1.2.0",
"fuse.js": "^6.0.0",
"sass": "^1.26.5"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-navigation": "^0.1.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@upstatement/eslint-config": "^0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"luxon": "^1.21.3",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"temples": "^2.1.1"
}
}