-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.45 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.45 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
{
"name": "template-module",
"version": "0.1.0",
"description": "Default template for server-base modules",
"main": "index.js",
"private": true,
"scripts": {
"prepare": "npm run meta:register-precommit",
"build": "webpack --config webpack.config.js --mode production",
"test": "jest --coverage",
"lint": "eslint --ignore-pattern node_modules/ --no-error-on-unmatched-pattern ./src ./tests",
"style": "prettier --write package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"style:ci": "prettier --list-different package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"clean": "rimraf index.js coverage",
"meta:register-precommit": "node scripts/register-precommit-hook.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/server-state/template-module.git"
},
"author": "server-state",
"license": "MIT",
"bugs": {
"url": "https://github.com/server-state/template-module/issues"
},
"homepage": "https://github.com/server-state/template-module#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/webpack": "^5.28.0",
"coveralls": "^3.1.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.4.1",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}