-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.69 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "www.analogstudios.net",
"version": "0.1.0",
"private": true,
"description": "Frontend website for www.analogstudios.net.",
"repository": {
"type": "git",
"url": "git+https://github.com/AnalogStudiosRI/www.analogstudios.net.git"
},
"type": "module",
"engines": {
"node": ">=18.12.1"
},
"keywords": [
"Analog Studios",
"Analog",
"Rhode Island"
],
"homepage": "https://github.com/AnalogStudiosRI/www.analogstudios.net#readme",
"author": "Owen Buckley <analogstudiosri@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf .greenwood/ public/ reports/ storybook-static/",
"lint": "eslint \"*.js\" \"./.storybook/*.js\" \"./src/**/*.js\" \"./src/**/*.ts\" && ls-lint \"./src/**/*.js\"",
"dev": "greenwood develop",
"build": "greenwood build",
"start": "npm run dev",
"serve": "npm run clean && npm run build && greenwood serve",
"story:dev": "start-storybook -p 6006",
"story:build": "build-storybook",
"story:serve": "npm run clean && npm run story:build && http-server ./storybook-static",
"test": "wtr",
"test:tdd": "npm run test --watch"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.4",
"font-awesome": "4.6.3",
"lit": "^3.0.0",
"lit-redux-router": "~0.19.0",
"pwa-helpers": "^0.9.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"web-social-share": "^8.0.1"
},
"devDependencies": {
"@analogstudiosri/greenwood-plugin-font-awesome": "^0.3.0",
"@aws-sdk/client-cloudfront": "^3.47.0",
"@aws-sdk/client-s3": "^3.46.0",
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "^0.30.0",
"@greenwood/plugin-google-analytics": "^0.30.0",
"@greenwood/plugin-postcss": "^0.30.0",
"@greenwood/plugin-typescript": "^0.30.0",
"@ls-lint/ls-lint": "^1.10.0",
"@rollup/plugin-dynamic-import-vars": "^1.4.1",
"@storybook/addon-actions": "^6.3.2",
"@storybook/addon-essentials": "^6.3.2",
"@storybook/addon-links": "^6.3.2",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/web-components": "^6.3.2",
"@types/google.analytics": "^0.0.45",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^6.6.0",
"@web/test-runner": "^0.18.1",
"@web/test-runner-junit-reporter": "^0.7.1",
"acorn-import-attributes": "^1.9.5",
"eslint": "^8.2.0",
"glob-promise": "^4.2.2",
"http-server": "^14.1.1",
"mime-types": "^2.1.34",
"patch-package": "^8.0.0",
"postcss-nested": "^4.1.2",
"rimraf": "^2.6.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.2",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}