generated from rudderlabs/rudder-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "rudder-json-template-engine-playground",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@rudderstack/json-template-engine": "^0.19.5",
"@rudderstack/workflow-engine": "^0.8.18",
"allotment": "^1.20.2",
"axios": "^1.7.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"usehooks-ts": "^3.1.0"
},
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
"preview": "npm run build && vite preview",
"test": "echo 'Add tests'",
"prepare": "husky",
"lint:staged": "lint-staged",
"format": "prettier --write '**/*.ts' '**/*.js' '**/*.tsx' '**/*.css' '**/*.json'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.(tsx|ts|json|css|js)": "npm run format"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"prettier": "^3.3.2",
"typescript": "^5.4.5",
"vite": "^6.0.11",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-node-polyfills": "^0.23.0"
}
}