-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 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
{
"name": "web-for-study-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"eslint": "npx eslint src/*.ts src/**/*.ts",
"nodemon": "nodemon -e ts",
"start": "tsc && node dist/index.js",
"test": "npx jest --coverage"
},
"jest": {
"transform": {
".*\\.(ts)$": "./node_modules/ts-jest"
},
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"reporters": [
"default",
"jest-html-reporters"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomoyuki-sa/web-for-study-1.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomoyuki-sa/web-for-study-1/issues"
},
"homepage": "https://github.com/tomoyuki-sa/web-for-study-1#readme",
"dependencies": {
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/node": "^13.7.0",
"aws-sdk": "^2.610.0",
"bcrypt": "^3.0.7",
"cookie-parser": "^1.4.4",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"request": "^2.88.0",
"typescript": "^3.7.5",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"http-status-codes": "^1.4.0",
"jest": "^25.1.0",
"jest-html-reporters": "^1.2.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.1.0",
"ts-node": "^8.6.2"
}
}