-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "tfnpm",
"version": "1.0.0",
"description": "借鉴monorepo的思想,利用lerna管理前端一些基础库",
"main": "index.js",
"scripts": {
"init": "tnpm i --needlock & lerna bootstrap",
"commitlint": "commitlint --color",
"dev": "node examples/server.js",
"docs": "node scripts/initDocs & vuepress dev docs",
"boot": "node scripts/bootstrap.js",
"docs:build": "vuepress build docs",
"lint": "eslint ./ --fix",
"eslint": "eslint --fix",
"build": "lerna bootstrap & lerna run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e .git/COMMIT_EDITMSG",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-flow-vue": "^1.0.0",
"buble": "^0.19.3",
"camelize": "^1.0.0",
"chromedriver": "^2.35.0",
"conventional-changelog-cli": "^2.0.11",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.10",
"es6-promise": "^4.2.4",
"eslint": "^3.11.1",
"express": "^4.16.2",
"express-urlrewrite": "^1.2.0",
"husky": "^1.3.1",
"jasmine": "2.8.0",
"lerna": "^3.13.1",
"lint-staged": "^8.1.0",
"moment": "^2.24.0",
"nightwatch": "^0.9.20",
"nightwatch-helpers": "^1.0.0",
"path-to-regexp": "^1.7.0",
"phantomjs-prebuilt": "^2.1.16",
"rollup": "^0.56.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.0.0",
"selenium-server": "^2.53.1",
"uglify-js": "^3.3.13",
"vue": "^2.5.16",
"vue-loader": "^15.2.1",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.16",
"vuepress": "1.0.0-alpha.39",
"vuepress-plugin-demo-code": "^0.3.1",
"webpack": "^4.9.0",
"webpack-dev-middleware": "^3.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WilsonLiu95/tfnpm.git"
},
"keywords": [
"monorepo",
"npm",
"modules",
"front_end"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/WilsonLiu95/tfnpm/issues"
},
"homepage": "https://github.com/WilsonLiu95/tfnpm#readme"
}