-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "oc-11ty-vite",
"version": "1.0.0",
"description": "A neat place to start with 11ty and Vite",
"main": "index.js",
"scripts": {
"start": "rm -rf ./_dev ./dist && concurrently \"npx @11ty/eleventy --watch\" \"npx vite\"",
"dist": "rm -rf ./_dev ./dist && npx @11ty/eleventy && npx vite build",
"format": "npx pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OddCommon/11ty-vite-boilerplate.git"
},
"keywords": [],
"author": "OddCommon <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/OddCommon/11ty-vite-boilerplate/issues"
},
"homepage": "https://github.com/OddCommon/11ty-vite-boilerplate#readme",
"dependencies": {
"@oddcommon/utils": "^1.2.5",
"modern-normalize": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-syntax-jsx": "^7.16.7",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"html-minifier": "^4.0.0",
"husky": "^4.3.8",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.1",
"require-from-string": "^2.0.2",
"sass": "^1.49.0",
"vite": "^2.7.13"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"eslint"
],
"*.jsx": [
"eslint --fix",
"eslint"
]
}
}