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
60
|
{
"dependencies": {
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"ejs": "3.1.8",
"express": "4.18.1",
"express-fileupload": "1.4.0",
"express-rate-limit": "6.4.0",
"helmet": "5.1.0",
"passport": "^0.6.0",
"passport-saml": "3.2.1",
"shell-quote": "1.7.3",
"umn-shib-nodejs": "UMN-EE4951W-Lamperski/umn-shib-nodejs#master"
},
"devDependencies": {
"@types/cookie-parser": "1.4.3",
"@types/csurf": "1.11.2",
"@types/express": "4.17.13",
"@types/express-fileupload": "1.2.2",
"@types/node": "18.0.0",
"@types/passport": "^1.0.9",
"@types/shell-quote": "1.7.1",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"eslint": "8.17.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"install": "0.13.0",
"nodemon": "2.0.16",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"scripts": {
"build": "npm-run-all clean tsc copy-views",
"build:ci": "npm-run-all clean tsc",
"build:pack": "npm-run-all build pack",
"copy-views": "cp -r ./src/views ./dist/views && cp -r ./src/public ./dist/public",
"clean": "rm -rf dist",
"dev": "nodemon --watch ./src -e ts,ejs,css,js --exec yarn dev:start",
"dev:start": "npm-run-all build start",
"lint": "eslint --ext .ts,.js ./src --fix && prettier --write ./src",
"lint:ci": "eslint --ext .ts,.js ./src && prettier ./src --check",
"pack": "pkg . -t node16-linux -o pend-server",
"start": "node dist/index.js",
"tsc": "tsc --project ./tsconfig.json"
},
"name": "4951w-pendulum-webapp",
"version": "0.1.0",
"description": "The webapp for Professor Lamperski's Pendulum",
"main": "dist/index.js",
"bin": "dist/index.js",
"author": "Matt Strapp <matt@mattstrapp.net>",
"repository": "https: //github.com/RosstheRoss/4951w-pendulum",
"license": "MIT",
"private": true,
"type": "module"
}
|