-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "prism",
"version": "1.0.0",
"description": "A premium project intelligence and team collaboration platform",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"dev:server": "node server/index.js",
"dev:client": "cd client && npm run dev",
"build": "cd client && npm run build",
"start": "npm run dev:server",
"install:all": "npm install && cd client && npm install",
"clean": "rm -rf node_modules client/node_modules"
},
"keywords": [
"project-management",
"kanban",
"react",
"express",
"sqlite",
"zustand",
"fullstack",
"saas"
],
"author": "DLinacre",
"license": "MIT",
"homepage": "https://Linacre.site",
"repository": {
"type": "git",
"url": "https://github.com/DLinacre/prism.git"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.4.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"cookie-parser": "^1.4.6"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}