-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.59 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
{
"name": "express-data-encryption",
"version": "1.0.0",
"description": "",
"main": "./src/main.ts",
"type": "commonjs",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --config ./nodemon.json -r tsconfig-paths/register ./src/main.ts",
"start": "cross-env NODE_ENV=development ts-node -r tsconfig-paths/register ./src/main.ts",
"start:docker-compose": "docker-compose up -d",
"stop:docker-compose": "docker-compose down",
"build": "node ./builder/main.js",
"build:docker-image": "npm run build && docker build -t express-data-encryption .",
"lint-check": "eslint ./src/**/*",
"lint-fix": "eslint ./src/**/* --fix"
},
"author": "RuixeWolf",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"connect-history-api-fallback": "^1.6.0",
"crypto-js": "^4.1.1",
"express": "^4.17.1",
"mongoose": "^5.12.10",
"node-rsa": "^1.1.1",
"saslprep": "^1.0.3"
},
"devDependencies": {
"@types/connect-history-api-fallback": "^1.3.4",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.11",
"@types/node": "^15.0.3",
"@types/node-rsa": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"cross-env": "^7.0.3",
"esbuild": "^0.12.15",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.7",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.6.4"
}
}