forked from Ensono/stacks-webapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.34 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
{
"name": "amidostacks",
"version": "1.0.0",
"description": "Stacks web application template monorepo made with server side rendered React and node.js",
"main": "",
"repository": "https://github.com/amido/stacks-webapp-template.git",
"author": "https://amido.com",
"license": "MIT",
"private": true,
"scripts": {
"license:check:audit": "lerna run license:check:audit",
"license:check:allowed": "lerna run license:check:allowed",
"postinstall": "lerna bootstrap --hoist",
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"build": "lerna run build --stream",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"validate": "npm run prettier --list-different && npm run lint",
"version": "lerna version --conventional-commits --no-commit-hooks --no-push --no-git-tag-version --yes",
"publish": "lerna publish from-package --no-git-reset --no-commit-hooks --no-verify-access --ignore-prepublish --yes",
"clean:tree": "git clean -idx"
},
"engines": {
"node": ">=12.0",
"npm": ">=6.0"
},
"engineStrict": true,
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"lerna": "^3.20.2",
"husky": "^4.2.5",
"license-checker": "^25.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
}
}