-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "hapi-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon --config ./nodemon.json",
"start": "npm run server",
"start:prod": "NODE_ENV=production nodemon --config ./nodemon.json",
"lint": "eslint --config .eslintrc.js ./src --ext .ts,.tsx,.js --fix",
"prettier": "prettier --config .prettierrc.json --write \"src/**/*.{ts,tsx}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"acd-utils": "7.1.0",
"@hapi/glue": "8.0.0",
"@hapi/hapi": "20.0.1",
"@hapi/inert": "6.0.3",
"@hapi/vision": "6.0.1",
"await-to-js": "2.1.1",
"hapi-dev-errors": "4.0.0",
"hapi-pino": "8.3.0",
"hapi-react-views": "10.1.3",
"joi": "17.2.1",
"nodemon": "2.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"tsconfig-paths": "3.9.0",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"devDependencies": {
"@types/hapi-pino": "8.0.1",
"@types/hapi__glue": "6.1.2",
"@types/hapi__hapi": "20.0.1",
"@types/hapi__inert": "5.2.1",
"@types/hapi__vision": "5.5.2",
"@types/node": "14.11.8",
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/vision": "5.3.7",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-standard": "4.0.1",
"prettier": "2.1.2"
}
}