forked from microwavenby/shoegaze-stack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.92 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "shoegaze-stack-template",
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "run-s dev:startdb css dev:remix",
"dev:docker": "npm install && npm run dev:remix",
"dev:remix": "remix dev",
"dev:startdb": "docker compose up postgres --wait && npx prisma db push && npx prisma db seed",
"css": "run-s css:build css:post",
"css:build": "sass -I ./styles -I ./node_modules/@uswds -I ./node_modules/@uswds/uswds/packages styles:app/styles/unprefixed --style compressed",
"css:post": "postcss ./app/styles/unprefixed/styles.css --use autoprefixer -d ./app/styles",
"css:dev": "npm run css:build && sass -I ./styles -I ./node_modules/@uswds -I ./node_modules/@uswds/uswds/packages --watch styles:app/styles",
"test": "jest",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write .",
"e2e": "npx playwright test --retries=3",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:docker": "docker compose up -d remix_dev && docker compose exec remix_dev npm run storybook",
"typecheck": "tsc"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "^4.5.0",
"@remix-run/express": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@remix-run/server-runtime": "*",
"@remix-validated-form/with-zod": "^2.0.5",
"@trussworks/react-uswds": "4.1.1",
"@uswds/uswds": "3.1.0",
"i18next": "^22.0.6",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-fs-backend": "^2.0.1",
"i18next-http-backend": "^2.0.2",
"isbot": "^3.6.5",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.0.0",
"react-number-format": "^5.1.2",
"remix-i18next": "^4.2.0",
"remix-image": "^1.3.3",
"remix-validated-form": "^4.6.5",
"tiny-invariant": "^1.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"uuid": "^9.0.0",
"zod": "^3.19.1",
"zod-form-data": "^1.3.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.6.0",
"@babel/core": "^7.20.12",
"@playwright/test": "^1.30.0",
"@remix-run/dev": "^1.7.6",
"@remix-run/eslint-config": "^1.7.6",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/i18next-fs-backend": "^1.1.2",
"@types/jest": "^29.2.5",
"@types/jest-axe": "^3.5.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.13",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-storybook": "^0.6.10",
"jest": "^29.3.1",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"npm-run-all": "^4.1.5",
"playwright-core": "^1.30.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.4",
"prisma": "^4.10.1",
"sass": "^1.56.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"browserslist": [
"defaults"
]
}