-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "s4d-api",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc copy-assets",
"dev:start": "npm-run-all build start",
"dev": "nodemon",
"start": "npx ts-node .",
"update": "npm init -y && npm i --save-dev node@16 && npm config set prefix=$(pwd)/node_modules/node && export PATH=$(pwd)/node_modules/node/bin:$PATH",
"up-st": "npm init -y && npm i --save-dev node@16 && npm config set prefix=$(pwd)/node_modules/node && export PATH=$(pwd)/node_modules/node/bin:$PATH && npx ts-node index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.1",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-rate-limit": "^6.0.5",
"express-session": "^1.17.2",
"localforage": "^1.10.0",
"mongoose": "^6.1.6",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.0",
"@types/ms": "^0.7.31",
"node": "^16.13.2",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^3.9.10"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrredo/s4d-api.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/mrredo/s4d-api/issues"
},
"homepage": "https://github.com/mrredo/s4d-api#readme",
"description": "s4d api run code by doing `npm i` then doing `ts-node index.ts`"
}