-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 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
68
69
{
"name": "gasket-ts-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && node transform-extensions.js",
"start": "node dist/server.js",
"start:local": "GASKET_ENV=local npm run start",
"start:prod": "GASKET_ENV=production npm run start",
"local": "GASKET_ENV=local nodemon server.ts",
"preview": "npm run build && npm run start:local",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "npm run stylelint -- --fix",
"posttest": "npm run lint && npm run stylelint"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gasket/core": "^7.0.0-next.2",
"@gasket/engine": "^7.0.0-next.2",
"@gasket/plugin-express": "^7.0.0-next.2",
"@gasket/plugin-https": "^7.0.0-next.2",
"@gasket/plugin-logger": "^7.0.0-next.2",
"@gasket/plugin-winston": "^7.0.0-next.2",
"@gasket/utils": "^7.0.0-next.2",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"eslint": "^8.56.0",
"eslint-config-godaddy": "^7.1.0",
"eslint-plugin-unicorn": "^44.0.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"nodemonConfig": {
"ext": "ts",
"execMap": {
"ts": "node --loader ts-node/esm"
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"godaddy"
],
"plugins": [
"unicorn",
"jsdoc"
],
"rules": {
"unicorn/filename-case": "error",
"no-unused-vars": 1
},
"ignorePatterns": [
"dist",
"node_modules"
]
}
}