-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.08 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "rescript-starter-kit",
"version": "0.0.0",
"author": "Patrick Ecker <ryyppy@users.noreply.github.com>",
"license": "Apache-2.0",
"dependencies": {
"@ax-llm/ax": "^12.0.18",
"@headlessui/react": "^2.2.4",
"@rescript/core": "^1.6.1",
"@rescript/react": "^0.12.1",
"chroma-js": "^3.1.2",
"classnames": "^2.5.1",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.58.1",
"rescript": "^11.1.4"
},
"repository": "https://github.com/rescript-lang/create-rescript-app",
"scripts": {
"dev": "next",
"dev:test": "next -p 3030",
"dev:all": "concurrently \"npm run res:dev\" \"npm run dev\" --names \"ReScript,Next\" --prefix-colors \"cyan,magenta\"",
"debug": "NODE_OPTIONS='--inspect' next",
"build": "rescript && next build",
"now-build": "rescript && next build",
"export": "next export",
"start": "next start -p $PORT",
"res:prod": "npm run build && npm start",
"res:build": "rescript",
"res:clean": "rescript clean",
"res:dev": "rescript -w",
"test:e2e": "rescript && playwright test",
"lint:md": "markdownlint '**/*.md'",
"lint:design-system": "./scripts/lint-design-system.sh",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,res,json,md}'",
"palette": "node scripts/generate-palette.js",
"generate:component": "node src/ai-generator/cli-entry.js",
"codemod": "node scripts/codemods/removeClassnameAndAddStyleProps.js"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@playwright/test": "^1.53.1",
"@types/chroma-js": "^3.1.1",
"@types/inquirer": "^9.0.8",
"@types/node": "^20.10.5",
"@types/react": "19.1.8",
"autoprefixer": "10.1.0",
"concurrently": "^9.2.0",
"cssnano": "^6.0.1",
"gentype": "4.1",
"glob": "^11.0.3",
"inquirer": "^12.7.0",
"markdownlint-cli": "^0.35.0",
"playwright": "^1.53.1",
"postcss": "^8.4.32",
"prettier": "^3.3.0",
"tailwindcss": "^3.3.6",
"tsx": "^4.20.3",
"typescript": "^5.3.3"
}
}