-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "node-boilerplate",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"main": "dist/index.js",
"scripts": {
"build": "gulp",
"build:watch": "gulp watch",
"clean": "rm -rf ./dist",
"compile": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"package:sort": "sort-package-json \"**/package.json\"",
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-monorepo": "^0.3.2",
"glob": "^8.0.3",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"husky": "^8.0.1",
"jest": "^28.1.1",
"pinst": "^3.0.0",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}