-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.8 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
{
"name": "cagov-template-development",
"version": "6.5.5",
"description": "CA State Web Template Development Project",
"author": {
"name": "Carter Medlin",
"email": "carter.medlin@state.ca.gov",
"url": "https://github.com/carterm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Office-of-Digital-Services/California-State-Web-Template-Development.git"
},
"bugs": "https://github.com/Office-of-Digital-Services/California-State-Web-Template-Development/issues",
"license": "MIT",
"homepage": "https://template.webstandards.ca.gov/",
"scripts": {
"start": "cross-env MY_ENVIRONMENT=local run-p watch:js watch:eleventy",
"build": "run-p build:*",
"buildFullCSS": "FULL_CSS_BUILD=true run-p build:*",
"watch:js": "rollup --config rollup.config.js --watch",
"watch:eleventy": "npx @11ty/eleventy --serve",
"build:js": "rollup --config rollup.config.js",
"build:eleventy": "npx @11ty/eleventy",
"GIT cleanup": "git clean -fd",
"stylelint-rules-prettier-check": "stylelint-config-prettier-scss-check",
"stylelint run fix": "npx stylelint '**/*.{css,scss}' --fix"
},
"private": true,
"type": "commonjs",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"bootstrap": "^5.3.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-nested": "^7.0.2",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-plugin-jsdoc": "^48.2.0",
"postcss-aspect-ratio-polyfill": "^2.0.0",
"prettier": "^3.8.0",
"stylelint": "^15.10.2",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"@fullhuman/postcss-purgecss": "^5.0.0"
}
}