-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "projector-backend-interview",
"jest": {
"preset": "ts-jest",
"rootDir": "./src/",
"moduleDirectories": [
"node_modules"
],
"modulePaths": [
"<rootDir>/"
],
"testEnvironment": "node",
"verbose": true,
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
},
"dependencies": {
"@lukeed/uuid": "^1.0.1",
"@types/mysql": "^2.15.17",
"aws-sdk": "^2.839.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"md5": "^2.3.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "7.10.4",
"@types/express": "^4.17.8",
"@types/node": "^14.10.2",
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"fork-ts-checker-webpack-plugin": "^5.0.9",
"hard-source-webpack-plugin": "github:propellerfactory/hard-source-webpack-plugin#cc94478579b81a9ec59c5918c57e2017f4aaba26",
"jest": "^26.6.1",
"nodemon": "^2.0.4",
"on-build-webpack": "^0.1.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.2",
"ts-node": "^9.0.0",
"typescript": "^3.9.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.10",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"scripts": {
"start": "node --async-stack-traces --inspect ./bundles/index.js",
"test": "NODE_ENV=jest node ./node_modules/.bin/jest --detectOpenHandles"
}
}