-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.07 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
102
103
104
105
106
107
108
109
{
"name": "@fliegwerk/trc",
"description": "A simple, bare-bones compiler for Typescript React projects, providing a configurable API",
"license": "MIT",
"author": {
"name": "fliegwerk",
"email": "[email protected]",
"url": "https://www.fliegwerk.com/"
},
"version": "0.1.2",
"contributors": [
{
"email": "[email protected]",
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka"
},
{
"email": "[email protected]",
"name": "Ludwig Richter",
"url": "https://github.com/fussel178"
}
],
"bugs": {
"url": "https://github.com/fliegwerk/trc/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fliegwerk/trc.git"
},
"homepage": "https://fliegwerk.github.io/trc",
"keywords": [
"typescript",
"react",
"compile",
"webpack",
"webpack5",
"api"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-pattern node_modules/ --no-error-on-unmatched-pattern \".\"",
"style": "prettier --write package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"style:ci": "prettier --list-different package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"docs": "npm run docs:types",
"docs:ci": "npm run docs:types:ci",
"docs:types": "fliegdoc build --serve --port 4040",
"docs:types:ci": "fliegdoc build"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"trc": "dist/bin.js"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@fliegwerk/logsemts": "^0.4.2",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"picomatch": "^2.2.3",
"pnp-webpack-plugin": "^1.6.4",
"sass-loader": "^12.0.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^9.1.2",
"url-loader": "^4.1.1",
"webpack": "^5.37.0",
"webpack-dev-server": "^4.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^10.1.0",
"@types/node": "^17.0.4",
"@types/picomatch": "^2.2.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack-dev-server": "^4.1.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fliegdoc": "^0.5.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.32.13",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.32.13",
"typescript": "^4.2.4"
}
}