-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.51 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
93
94
95
96
97
98
99
100
101
{
"name": "ffbt",
"version": "1.0.0-rc.3",
"description": "Build a Typescript app without pain",
"license": "MIT",
"engines": {
"node": ">=12"
},
"bin": {
"ffbt": "./dist/cli/entrypoint.js"
},
"files": [
"dist",
"interfaces.d.ts",
"oclif.manifest.json"
],
"types": "interfaces.d.ts",
"scripts": {
"start": "npm run ts-watch",
"ts-watch": "tsc --watch --pretty",
"build": "rm -rf dist && tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "jest --ci",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif-dev manifest"
},
"dependencies": {
"@oclif/command": "^1.8.22",
"@oclif/config": "^1.18.8",
"@oclif/plugin-help": "^3.3.1",
"@types/lodash": "^4.14.191",
"autoprefixer": "^9.8.6",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"fork-ts-checker-notifier-webpack-plugin": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.0",
"postcss-loader": "^3.0.0",
"sass": "^1.35.1",
"sass-loader": "^10.2.0",
"stylelint": "^13.13.1",
"ts-loader": "^8.3.0",
"tslib": "^2.4.1",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-notifier": "^1.15.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^27.5.2",
"@types/node": "^14.17.4",
"@types/stylelint": "^13.13.3",
"@types/webpack-dev-server": "^4.7.2",
"@types/webpack-merge": "^5.0.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"utility-types": "^3.10.0"
},
"oclif": {
"commands": "./dist/cli/commands",
"bin": "ffbt",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"prerun": [
"./dist/cli/banner.js"
]
}
},
"repository": "git+https://github.com/readdle/ffbt.git",
"keywords": [
"cli",
"build-tools",
"frontend",
"typescript",
"webpack",
"tslint",
"bundler",
"scss",
"ready-to-use",
"stylelint"
],
"bugs": {
"url": "https://github.com/readdle/ffbt/issues"
},
"homepage": "https://github.com/readdle/ffbt#readme"
}