-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "stackit-qa-platform",
"version": "1.0.0",
"description": "A professional Q&A forum platform with modern UI and rich features",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"build": "cd client && npm run build",
"install-all": "npm install && cd server && npm install && cd ../client && npm install",
"start": "cd server && npm start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"qa",
"forum",
"stackoverflow",
"questions",
"answers"
],
"author": "StackIt Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"mongoose": "^8.0.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neeraj-code-beep/StackIt.git"
},
"bugs": {
"url": "https://github.com/Neeraj-code-beep/StackIt/issues"
},
"homepage": "https://github.com/Neeraj-code-beep/StackIt#readme"
}