-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.03 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
60
61
62
63
64
65
66
{
"name": "psf-node",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node build/index.js",
"serve": "webpack --watch --env mode=development --config webpack.config.ts",
"clean:dev": "rimraf build",
"clean:prod": "rimraf dist",
"build": "webpack --mode production --config webpack.config.ts",
"prebuild": "yarn install",
"dev": "nodemon build/index.js --watch build",
"prod": "nodemon dist/index.js --watch dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "fittedng",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.14",
"@types/google-spreadsheet": "^3.3.0",
"argon2": "^0.31.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"google-spreadsheet": "^3.3.0",
"joi": "^17.10.0",
"jwt-auth-lib": "^1.0.17",
"mongoose": "^7.4.4",
"nodemailer": "^6.8.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.13",
"@types/node": "^18.11.11",
"@types/nodemailer": "^6.4.7",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"babel-loader": "^9.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1"
}
}