forked from gothinkster/angularjs-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 668 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 668 Bytes
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
{
"name": "conduit-angularjs",
"version": "1.0.0",
"description": "Angular frontend for Conduit",
"author": "Thinkster",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "node scripts/generate-templates.js && vite",
"build": "node scripts/generate-templates.js && vite build",
"preview": "vite preview",
"templates": "node scripts/generate-templates.js"
},
"dependencies": {
"angular": "^1.8.3",
"angular-ui-router": "^1.1.2",
"marked": "^17.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.3",
"glob": "^13.0.1",
"vite": "^7.3.1"
}
}