forked from AnalogStudiosRI/www.blissfestri.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.21 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": "www.blissri.com",
"version": "0.0.1",
"description": "Website for BlissRI",
"type": "module",
"author": "Owen Buckley <owen@thegreenhouse.io>",
"homepage": "https://github.com/AnalogStudiosRI/www.blissri.com#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/AnalogStudiosRI/www.blissri.com.git"
},
"keywords": [
"BlissRI",
"Analog Studios",
"Rhode Island"
],
"scripts": {
"dev": "greenwood develop",
"dev:env": "node --env-file=.env ./node_modules/@greenwood/cli/src/index.js develop",
"build": "greenwood build",
"build:env": "node --env-file=.env ./node_modules/@greenwood/cli/src/index.js build",
"serve": "npm run build && greenwood serve",
"serve:env": "npm run build:env && greenwood serve",
"story:dev": "storybook dev -p 6006",
"story:build": "storybook build",
"story:serve": "npm run clean && npm run story:build && http-server ./storybook-static",
"test": "wtr",
"test:tdd": "npm run test -- --watch",
"lint": "ls-lint && npm run lint:js && npm run lint:css",
"lint:js": "eslint \"*.{js,cjs,.mjs}\" \".storybook/*.{js,cjs}\" \"src/**/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.js\", \"./src/**/*.css\"",
"clean": "rimraf public/ .greenwood/ ./storybook-static"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.1",
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "~0.29.3",
"@greenwood/plugin-postcss": "~0.29.3",
"@ls-lint/ls-lint": "^1.10.0",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/test": "^8.0.6",
"@storybook/web-components": "^8.0.6",
"@storybook/web-components-vite": "^8.0.6",
"@web/test-runner": "^0.13.13",
"@web/test-runner-junit-reporter": "^0.4.4",
"@web/test-runner-puppeteer": "^0.10.0",
"autoprefixer": "^10.4.14",
"cloudinary": "^2.2.0",
"eslint": "^8.23.0",
"http-server": "^14.1.1",
"lit": "^3.1.2",
"rimraf": "^3.0.2",
"storybook": "^8.0.6",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^3.3.2",
"vite": "^5.2.8"
}
}