-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "dsac-open-website",
"version": "0.1.0",
"author": "CMS Open Source <opensource@cms.hhs.gov>",
"license": "CC0-1.0",
"description": "",
"scripts": {
"format": "prettier --write .",
"start": "NODE_ENV=development eleventy --serve",
"build": "NODE_ENV=production eleventy",
"deploy": "echo 'NOT IMPLEMENTED'",
"lint": "eslint ./src/js/**/*.js",
"style": "prettier --check src/**/**.{js,css}"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@shopify/prettier-plugin-liquid": "^1.1.0",
"@uswds/uswds": "^3.4.1",
"autoprefixer": "^10.4.14",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"purgecss-from-html": "^6.0.0-alpha.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"requireConfigFile": false
}
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"dependencies": {
"@octokit/graphql": "^6.0.0"
}
}