-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "notification",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/app.ts",
"start-dev": "ts-node-dev ./src/app.ts",
"test": "jest --config=jest.config.js",
"build": "tsc",
"lint": "eslint ./src --config .eslintrc.json",
"typecheck": "tsc --noEmit",
"preprettier": "prettier --write 'client/src/**/*.{js,jsx,ts,tsx,json,scss,md}'",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryo4004/notification.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryo4004/notification/issues"
},
"homepage": "https://github.com/ryo4004/notification#readme",
"dependencies": {
"express": "^4.17.1",
"firebase-admin": "^9.6.0",
"nedb": "^1.8.0",
"node-fetch": "^2.6.1",
"superagent": "^6.1.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/nedb": "^1.8.11",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"jest": "26.6.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}