-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "pulse_app_template",
"displayName": "Pulse App Template",
"description": "A template for creating Pulse App",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"dev": "pulse dev",
"build": "pulse build",
"build-client": "pulse build --target client",
"build-server": "pulse build --target server",
"start": "pulse start",
"preview": "pulse preview",
"clean": "pulse clean"
},
"dependencies": {
"@pulse-editor/react-api": "^0.1.1-beta.89",
"@pulse-editor/shared-utils": "^0.1.1-beta.89",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@pulse-editor/cli": "^0.1.32",
"@tailwindcss/postcss": "^4.2.0",
"@types/cors": "^2.8.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"css-loader": "^7.1.4",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.1",
"style-loader": "^4.0.0",
"tailwindcss": "^4.2.0",
"ts-loader": "^9.5.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}