-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.09 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
63
64
65
66
67
{
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.1",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/uuid": "^8.3.0",
"babel-jest": "^27.5.1",
"concurrently": "^7.1.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-watch": "^8.0.0",
"http-server": "^14.1.0",
"jest": "27",
"jest-environment-node": "^27.5.1",
"merge": "^2.1.1",
"mongodb-memory-server": "^8.5.1",
"prettier": "2.6.2",
"ts-jest": "^27.1.4"
},
"optionalDependencies": {
"cypress": "^9.6.0",
"netlify-cli": "^10.0.0"
},
"scripts": {
"build": "yarn run build:backend && yarn run build:frontend",
"build:backend": "yarn run build:netlify",
"build:frontend": "webpack",
"build:netlify": "webpack --config ./webpack.netlify.functions.js",
"lint": "eslint .",
"posttest": "rimraf ./globalConfig.json",
"prebuild": "rimraf ./functions",
"start": "yarn netlify dev --port 8080",
"test": "jest --verbose",
"test:e2e": "concurrently \"netlify dev --port 8080\" \"cypress run\" --kill-others",
"watch:backend": "tsc -p tsconfig.netlify.functions.json --listEmittedFiles --watch",
"watch:frontend": "tsc --listEmittedFiles --watch",
"watch:lint": "esw -w ./src/**/*.ts --color --clear --changed",
"watch:test": "jest --watch --noStackTrace"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@netlify/functions": "^1.0.0",
"@types/aws-lambda": "^8.10.95",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.5.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.1.0",
"typescript": "^4.6.4",
"uuid": "8.3.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.9.2",
"yarn": "^1.22.18"
},
"resolutions": {
"async": "^2.6.4 || >2",
"glob-parent": "^6.0.2"
}
}