This repository was archived by the owner on Dec 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 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
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
{
"name": "techpacket-build-tools",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"version": "1.0.16",
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint .",
"docs:serve": "mkdocs serve",
"docs:bootstrap": "pip install -r docs/requirements.txt",
"clearAllNodeModules": "find . -name 'node_modules' -exec rm -rf '{}' +",
"clearAllNodeLockFiles": "find . -name 'package-lock.json' -exec rm -rf '{}' +",
"clearAll": "npm run clearAllNodeModules && npm run clearAllNodeLockFiles"
},
"engines": {
"npm": ">=5",
"node": ">=8"
},
"files": [
"bin",
"lib"
],
"repository": "git@github.com:TechPacket/techpacket-build-tools.git",
"author": "TechPacket",
"license": "MIT",
"bin": {
"techpacket-build-tools": "bin/cli.js"
},
"dependencies": {
"@techpacket-build-tools/core": "^1.0.8",
"@techpacket-build-tools/dev-utils": "^1.0.3",
"@techpacket-build-tools/errors": "^1.0.2",
"@techpacket-build-tools/logger": "^1.0.4",
"@techpacket-build-tools/preset-babel-base": "^1.0.3",
"address": "^1.0.1",
"cac": "^5.0.12",
"chalk": "2.4.2",
"chokidar": "^2.0.3",
"dotenv": "^6.0.0",
"find-babel-config": "^1.1.0",
"get-port": "^4.0.0",
"import-local-file": "^0.2.0",
"lodash": "^4.17.11",
"loud-rejection": "^1.6.0",
"opn": "^5.4.0",
"parse-json-config": "^0.3.1",
"update-notifier": "^2.1.0",
"use-config": "^2.0.4",
"webpack-chain": "^4.11.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.7.2",
"yarn-global": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.0.0-rc.15",
"jest": "^23.6.0",
"lerna": "^3.4.0",
"postcss-load-config": "^2.0.0",
"prettier": "^1.14.3"
},
"workspaces": [
"packages/*"
]
}