-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "addapp",
"version": "1.0.0",
"description": "A demo message board app, built in stages, with explanations & diffs in the readme.",
"main": "svr.js",
"type": "module",
"scripts": {
"start": "cd stages/1 && node svr",
"stage1": "cd stages/1 && node --watch svr",
"stage2": "cd stages/2 && node --watch svr",
"stage3": "cd stages/3 && node --watch svr",
"stage4": "cd stages/4 && node --watch svr",
"stage5": "cd stages/5 && node --watch svr",
"stage6": "cd stages/6 && node --watch svr",
"stage7": "cd stages/7 && node --watch svr",
"stage8": "cd stages/8 && node --watch svr",
"stage9": "cd stages/9 && node --watch svr",
"setuppg": "createdb messageboard && psql messageboard < stages/9/messageboard.sql",
"setup": "npm run setuppg",
"lint": "eslint stages",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/portsoc/staged-simple-message-board.git"
},
"keywords": [
"node",
"server",
"fetch",
"app",
"api"
],
"author": "Rich Boakes <rich@boakes.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/portsoc/staged-simple-message-board/issues"
},
"homepage": "https://github.com/portsoc/staged-simple-message-board#readme",
"dependencies": {
"express": "^5.0.0-beta.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.9.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.4",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-portsoc": "^1.0.1"
},
"eslintConfig": {
"extends": "portsoc",
"root": true,
"env": {
"browser": true
}
}
}