-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.73 KB
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
{
"name": "motzi",
"private": true,
"dependencies": {
"@rails/actioncable": "^8.1.200",
"@rails/activestorage": "^7.1.600",
"@rails/ujs": "^7.1.600",
"@stripe/react-stripe-js": "^2.9.0",
"@stripe/stripe-js": "^5.5.0",
"accounting": "^0.4.1",
"ahoy.js": "^0.3.4",
"axios": "^0.21.1",
"lodash": "^4.17.19",
"luxon": "^1.26.0",
"moment": "^2.25.1",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"showdown": "^1.9.1",
"styled-components": "^5.2.1"
},
"version": "0.1.0",
"devDependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"bun-types": "^1.0.30",
"dotenv": "^17.3.1",
"esbuild": "^0.20.2",
"jsdom": "^22.1.0",
"prettier": "2.0.4",
"react-test-renderer": "^18.3.1",
"typescript": "^5.5.4"
},
"scripts": {
"build": "esbuild app/javascript/packs/*.ts app/javascript/packs/*.tsx --bundle --sourcemap --loader:.js=jsx --loader:.ts=ts --loader:.tsx=tsx --outdir=app/assets/builds --public-path=/assets",
"build:watch": "esbuild app/javascript/packs/*.ts app/javascript/packs/*.tsx --bundle --sourcemap --loader:.js=jsx --loader:.ts=ts --loader:.tsx=tsx --outdir=app/assets/builds --public-path=/assets --watch",
"test": "bun test",
"test-watch": "bun test --watch",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"typecheck:test": "IS_REACT_ACT_ENVIRONMENT=false tsc --noEmit -p tsconfig.test.json"
}
}