generated from compulim/template-react-esbuild
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 2.24 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
{
"name": "react-esbuild-app",
"version": "0.0.0-0",
"private": true,
"keywords": [
"template-react-esbuild"
],
"scripts": {
"build": "concurrently \"npm run build:*\"",
"build:esbuild": "esbuild --bundle --entry-names=[ext]/[name] --jsx=automatic --minify --outdir=./public/static/ --sourcemap app=./src/app/index.tsx",
"build:typescript": "tsc --project ./src/tsconfig.json",
"bump": "npm run bump:prod && npm run bump:dev",
"bump:dev": "if [ `cat package.json | jq -r '.devDependencies | length'` -ne 0 ]; then npm install $BUMP_DEV_OPTIONS $(cat package.json | jq -r '(.pinDependencies // {}) as $p | ((.devDependencies // {}) | keys) | map(. + \"@\" + ($p[.] // [\"latest\"])[0]) | .[]'); fi",
"bump:prod": "if [ `cat package.json | jq -r '.dependencies | length'` -ne 0 ]; then npm install $BUMP_PROD_OPTIONS $(cat package.json | jq -r '(.pinDependencies // {}) as $p | ((.dependencies // {}) | keys) | map(. + \"@\" + ($p[.] // [\"latest\"])[0]) | .[]'); fi",
"eslint": "npm run precommit",
"precommit": "eslint ./src/",
"start": "concurrently --kill-others \"npm run start:*\"",
"start:esbuild": "npm run build:esbuild -- --servedir=./public",
"start:typescript": "npm run build:typescript -- --watch"
},
"dependencies": {
"@emotion/css": "11.11.2",
"@fluentui/react": "^8.109.3",
"@fluentui/react-icons": "^2.0.212",
"botframework-webchat": "4.15.9",
"botframework-webchat-core": "4.15.9",
"classnames": "^2.3.2",
"markdown-it": "13.0.1",
"markdown-it-attrs": "4.1.6",
"markdown-it-attrs-es5": "2.0.2",
"markdown-it-for-inline": "0.1.1",
"math-random": "^2.0.1",
"mdast": "3.0.0",
"mdast-util-from-markdown": "2.0.0",
"p-defer": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "2.10.0",
"simple-update-in": "^2.2.0",
"use-ref-from": "^0.0.2"
},
"devDependencies": {
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"concurrently": "^8.2.0",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5.1.6"
}
}