-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
67
{
"name": "recall-api",
"version": "1.0.0",
"description": "The API for Recall",
"main": "./dist/index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"seed": "ts-node ./src/config/seeds/seed",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"watch": "webpack --config webpack.dev.ts",
"start:dev": "ts-node -r tsconfig-paths/register ./src/start.ts",
"start:watch-dev": "tsnd -r tsconfig-paths/register ./src/start.ts",
"build": "webpack --config webpack.prod.ts",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessamarie/recall-api.git"
},
"keywords": [
"Express",
"Node.js",
"MongoDB",
"API",
"Mongoose"
],
"author": "jessamarie",
"license": "ISC",
"bugs": {
"url": "https://github.com/jessamarie/recall-api/issues"
},
"homepage": "https://github.com/jessamarie/recall-api#readme",
"dependencies": {
"@overnightjs/core": "^1.7.5",
"@types/mongoose": "^5.11.97",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.3",
"jet-logger": "^1.0.6",
"mongoose": "^7.4.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/node": "^14.11.1",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.9.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.4",
"webpack-node-externals": "^2.5.2"
}
}