-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.74 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
{
"name": "@jakesidsmith/tsb",
"version": "3.0.0",
"description": "Dead simple TypeScript bundler, watcher, dev server, transpiler, and polyfiller",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"bin": {
"tsb": "dist/cli.js"
},
"scripts": {
"create-dotenv": "echo 'TEST=test' > .env",
"test-build": "npm run create-dotenv && rm -rf dist && npm run dist && ./dist/cli.js build --config test-files/tsb.config.ts",
"test-watch": "npm run create-dotenv && rm -rf dist && npm run dist && ./dist/cli.js watch --config test-files/tsb.config.ts",
"test-serve": "npm run create-dotenv && rm -rf dist && npm run dist && ./dist/cli.js serve --config test-files/tsb.config.ts",
"dist": "rm -rf dist && tsc --project tsconfig.dist.json && chmod +x dist/cli.js",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint '**/*.{js,jsx,ts,tsx}'",
"typecheck": "tsc --noEmit && tsc --noEmit --project test-files/tsconfig.json",
"test": "npm run typecheck && npm run lint",
"prepublishOnly": "npm test && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakesidsmith/tsb.git"
},
"keywords": [
"typescript",
"bundle",
"bundler",
"transpiler",
"watch",
"watcher",
"dev",
"server",
"polyfill",
"polyfiller"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakesidsmith/tsb/issues"
},
"homepage": "https://github.com/jakesidsmith/tsb#readme",
"dependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@types/babel__core": "^7.1.14",
"@types/semver": "^7.3.4",
"@types/webpack-dev-server": "^3.11.1",
"babel-loader": "^9.1.2",
"chalk": "^4.1.0",
"core-js": "^3.7.0",
"dotenv": "^8.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.3",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.3",
"jargs": "^0.4.7",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.2",
"webpack": "^5.88.1",
"webpack-dev-server": "^3.11.3",
"yup": "^0.30.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@types/node": "^16.11.66",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/rimraf": "^3.0.0",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-svg-loader": "^3.0.3"
}
}