-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 KB
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
{
"name": "@cclisa/coundown-widget",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack serve --open --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"build:watch": "webpack --config webpack.prod.ts --watch",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --pretty --noEmit",
"type-check:watch": "tsc --pretty --noEmit --watch",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "0.13.7"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@rjsf/core": "^2.5.1",
"@rjsf/material-ui": "^2.5.1",
"@staffbase/widget-sdk": "^3.3.1",
"@testing-library/dom": "7.30.4",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.6",
"@types/node": "15.0.2",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "3.11.1",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"@ungap/custom-elements": "0.1.15",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"core-js": "3.10.2",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"jest": "26.6.3",
"js-base64": "3.6.0",
"minimal-polyfills": "2.1.6",
"ts-loader": "^8.1.0",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"webpack": "^5.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"browserslist": [
">0.2%",
"not ie < 11"
]
}