-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "greenwood-getting-started",
"version": "1.0.0",
"description": "Repository for Greenwood's getting started guide",
"type": "module",
"scripts": {
"build": "greenwood build",
"dev": "greenwood develop",
"start": "npm run dev",
"serve": "rimraf ./public && npm run build && greenwood serve",
"lint:js": "eslint \"./src/**/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.js\", \"./src/**/*.css\"",
"lint": "ls-lint && npm run lint:js && npm run lint:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/greenwood-getting-started.git"
},
"keywords": [
"Greenwood",
"Web Components",
"Static Site Generator",
"Server Side Rendering",
"SSG",
"SSR"
],
"engines": {
"npm": ">=7.x"
},
"author": "Owen Buckley <owen@thegreenhouse.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProjectEvergreen/greenwood-getting-started/issues"
},
"homepage": "https://github.com/ProjectEvergreen/greenwood-getting-started#readme",
"devDependencies": {
"@greenwood/cli": "~0.30.0",
"@ls-lint/ls-lint": "^1.10.0",
"eslint": "^8.4.0",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}