-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 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
55
56
57
58
59
60
61
62
63
64
{
"private": true,
"engines": {
"node": "16"
},
"engine-strict": true,
"scripts": {
"test": "tsc --project tsconfig.json --noEmit && prettier --check \"src/client/**/*.tsx\" && jest",
"build": "yarn install && yarn run css && webpack --mode production",
"watch": "yarn install && yarn run css && webpack --watch --progress --color",
"css": "mkdir -p src/static/build && cp node_modules/@kbase/base-css/css/tachyons.min.css src/static/build/tachyons.min.css",
"fix": "prettier --write \"src/client/**/*.ts*\""
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/eslint-parser": "7.15.0",
"@babel/eslint-plugin": "7.14.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@types/enzyme": "3.10.9",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/history": "4.7.9",
"@types/jest": "27.0.1",
"@types/node": "16.7.2",
"@types/react": "16.9.5",
"@types/react-dom": "16.9.1",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.2.4",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"eslint": "7.32.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react": "7.25.1",
"jest": "^26.0.0",
"jest-fetch-mock": "3.0.3",
"prettier": "2.3.2",
"style-loader": "^1.0.0",
"ts-jest": "^26.0.0",
"ts-loader": "^6.2.1",
"typescript": "4.4.2",
"webpack": "5.51.1",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.8.0"
},
"dependencies": {
"@kbase/base-css": "0.0.2",
"@kbase/narrative-utils": "0.0.6",
"@types/dompurify": "2.2.3",
"@types/marked": "3.0.0",
"@types/react-router-dom": "5.1.8",
"@types/react-select": "3",
"dompurify": "2.3.1",
"history": "4.10.1",
"marked": "3.0.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-router-dom": "5.2.0",
"react-select": "3.2.0",
"timeago.js": "4.0.2"
}
}