-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 3.27 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
81
82
83
84
85
86
87
88
89
{
"name": "stampy-ui",
"description": "",
"license": "MIT",
"dependencies": {
"@remix-run/cloudflare-workers": "^2.13.1",
"@remix-run/cloudflare": "^2.13.1",
"@remix-run/css-bundle": "^2.13.1",
"@remix-run/react": "^2.13.1",
"client-zip": "^2.4.5",
"copy-to-clipboard": "^3.3.3",
"isbot": "^4",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"markdown-it-footnote": "^4.0.0",
"node-html-parser": "^6.1.12",
"react": "^18.2.0",
"react-auto-height": "^1.2.1",
"react-dom": "^18.2.0",
"remix": "^2.13.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"@remix-run/dev": "^2.13.1",
"@remix-run/testing": "^2.13.1",
"@storybook/addon-designs": "^7.0.9",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-vite": "^7.6.8",
"@storybook/test": "^7.6.8",
"@svgr/cli": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-footnote": "^3.0.3",
"@types/react": "^18.2.53",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"chromatic": "^10.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"jest-environment-miniflare": "^2.14.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"storybook": "^7.6.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"wrangler": "^3.24.0"
},
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"generate-icons": "npx @svgr/cli --typescript --jsx-runtime automatic --out-dir app/components/icons-generated -- app/assets/icons",
"eslint": "eslint --ignore-pattern .gitignore \"**/*.ts*\"",
"prettier": "prettier --check --ignore-path .gitignore \"**/*.{ts*,js,css,md,html}\"",
"lint": "tsc && npm run prettier && npm run eslint",
"eslint:fix": "eslint --fix --ignore-pattern .gitignore \"**/*.ts*\"",
"prettier:fix": "prettier --write --ignore-path .gitignore \"**/*.{ts*,js,css,md,html}\"",
"lint:fix": "tsc && npm run prettier:fix && npm run eslint:fix",
"build": "rimraf public/build && npm run generate-icons && cross-env NODE_ENV=production remix build --sourcemap",
"start": "remix dev --manual -c 'wrangler dev ./build/index.js'",
"dev": "npm run generate-icons && npm start",
"tsc": "tsc",
"wrangler": "wrangler",
"deploy": "npm run build && wrangler deploy",
"test": "npm run build && jest",
"refresh-test-data": "ts-node app/mocks/coda-responses/refresh-coda-data-for-tests.ts",
"clean-cache": "rimraf .cache .wrangler node_modules/.cache build public/build",
"storybook": "storybook dev -p 6006"
},
"main": "build/index.js"
}