-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.98 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tensorvortex.com",
"version": "1.0.0",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "*",
"express-rate-limit": "^5.2.3",
"mongodb": "^3.6.3",
"mongodb-client-encryption": "^1.2.5"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.18",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/express-rate-limit": "^5.1.2",
"@types/jest": "^26.0.23",
"@types/mongodb": "^3.6.18",
"@types/node": "^15.12.2",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"request": "^2.88.2",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"main": "dist/server.js",
"scripts": {
"watch": "npx nodemon -e ts -w ./src -x npm run watch:serve",
"watch:serve": "npx ts-node src/server.ts",
"build": "npx webpack --config webpack.config.js --mode production",
"prebuild": "npx eslint -c .eslintrc.json --ext .ts ./src --fix",
"test": "npx jest --config jestconfig.json --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git@github.com:MingyaoLiu/tensorvortex.com.git"
},
"keywords": [
"tensorvortex",
"Mingyao"
],
"author": "Mingyao Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/MingyaoLiu/tensorvortex.com/issues"
},
"homepage": "https://github.com/MingyaoLiu/tensorvortex.com",
"description": ""
}