-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "my-node-app",
"version": "1.0.0",
"description": "A Node.js project with a CRUD screen for TODO items",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"build": "npm ci",
"test": "mocha test/todoTests.js --reporter json > test-results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/my-node-app.git"
},
"keywords": [
"node",
"express",
"crud",
"todo"
],
"author": "Your Name",
"license": "CC",
"bugs": {
"url": "https://github.com/yourusername/my-node-app/issues"
},
"homepage": "https://github.com/yourusername/my-node-app#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"electron": "^30.0.1",
"express": "^4.19.2",
"mongoose": "^8.3.2",
"puppeteer": "^22.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"webpack": "^5.91.0"
},
"devDependencies": {
"chai": "^5.1.0",
"jest-junit": "^16.0.0",
"mocha": "^10.2.0",
"mocha-json-reporter": "^1.0.0-1",
"nodemon": "^3.0.2"
}
}