-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
57 lines (57 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@tensei/main",
"version": "0.0.0",
"main": "./build/server/index.js",
"license": "MIT",
"types": "./build/typings/index.d.ts",
"scripts": {
"test": "wsrun -p '@tensei/tests' -c test",
"test:watch": "wsrun -p '@tensei/tests' -c test:watch",
"build": "yarn clean && yarn lerna run build",
"clean": "node scripts/clean.js",
"dev": "wsrun -p '@tensei/*' -c dev",
"prettier": "wsrun -p '@tensei/*' -c prettier",
"release": "./scripts/release.sh",
"commit": "yarn git-cz",
"setup": "yarn && yarn build && cd examples/blog && yarn && cd ../typescript && yarn",
"example": "wsrun -p '@examples/typescript' -c example:dev",
"cms:dev": "wsrun -p '@tensei/cms' -c dev-client",
"cms:dev:server": "wsrun -p '@tensei/cms' -c dev",
"cms:build": "wsrun -p '@tensei/cms' -c build",
"example:dev:server": "wsrun -p '@examples/typescript' -c example:dev:server"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/react-trix-editor",
"**/laravel-mix",
"**/node-sass"
]
},
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
},
"devDependencies": {
"wsrun": "^5.2.4"
}
}