-
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.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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": "nodejs-intro",
"version": "1.0.0",
"description": "Speeding Planet's Introduction to Node.js class",
"main": "index.js",
"scripts": {
"format": "prettier . --check",
"format:write": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"server:start": "cross-env DEBUG=express node server/run-server.js",
"server:watch": "cross-env DEBUG=express nodemon server/run-server.js",
"rest-server": "json-server --port 8000 rest-server-data.json",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --watch"
},
"keywords": [],
"author": "John Paxton <pax@speedingplanet.com>",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@jest/globals": "^30.0.5",
"@speedingplanet/eslint-config": "^0.0.9",
"cross-env": "^10.0.0",
"eslint": "^9.33.0",
"jest": "^30.0.5",
"json-server": "^0.17.4",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"dependencies": {
"cookie-parser": "^1.4.7",
"debug": "^4.4.1",
"express": "^5.1.0",
"fs-extra": "^11.3.1",
"morgan": "^1.10.1",
"rimraf": "^6.0.1"
}
}