-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.51 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": "www.thegreenhouse.io",
"version": "3.3.1",
"description": "Personal / portfolio website for The Greenhouse.",
"repository": "https://github.com/thegreenhouseio/www.thegreenhouse.io",
"author": "[email protected]",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rimraf ./reports ./public ./greenwood",
"dev": "greenwood develop",
"build": "npm run clean && greenwood build",
"lint": "ls-lint && npm run lint:js && npm run lint:css",
"lint:js": "eslint \"*.js\" \"src/**/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.js\", \"./src/**/*.css\"",
"serve": "npm run clean && npm run build && greenwood serve",
"start": "npm run dev",
"test": "wtr",
"test:tdd": "npm run test -- --watch"
},
"dependencies": {
"lit-element": "^2.4.0",
"prismjs": "^1.27.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "^0.30.0",
"@greenwood/plugin-google-analytics": "^0.30.0",
"@greenwood/plugin-graphql": "^0.30.0",
"@greenwood/plugin-import-raw": "^0.30.0",
"@greenwood/plugin-postcss": "^0.30.0",
"@greenwood/plugin-renderer-puppeteer": "^0.30.0",
"@ls-lint/ls-lint": "^1.10.0",
"@mapbox/rehype-prism": "^0.5.0",
"@web/test-runner": "^0.13.13",
"@web/test-runner-junit-reporter": "^0.4.4",
"@web/test-runner-puppeteer": "^0.10.0",
"eslint": "^8.4.0",
"postcss-nested": "^4.1.2",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}