-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1013 Bytes
/
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
{
"name": "react-esbuild-starter",
"version": "2.1.0",
"description": "Starter template for React + Typescript, powered by Esbuild",
"repository": "https://github.com/belaczek/react-esbuild-starter.git",
"author": "Tomas Belada <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"typescript",
"esbuild"
],
"scripts": {
"start": "concurrently --names tsc,esb -c green.bold,blue.bold --kill-others \"yarn:bundle --dev\" \"tsc --watch\" ",
"build": "concurrently --success --names tsc,esb -c green.bold,blue.bold tsc yarn:bundle",
"bundle": "node ./esbuild.config.mjs",
"clean": "rimraf www/dist",
"test": "echo 'TODO'"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "14.14.35",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"concurrently": "6.0.1",
"create-serve": "1.0.1",
"esbuild": "0.11.5",
"rimraf": "3.0.2",
"typescript": "4.2.3"
}
}