-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.16 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
{
"scripts": {
"test:lint": "eslint src .eslintplugin .storybook --ext .js,.jsx,.mjs,.ts,.tsx",
"test:ts": "res=$(tsc --noEmit --skipLibCheck | grep -v \"^node_modules\"); if [ -n \"$res\" ]; then echo $res && exit 1 ; fi",
"test:unit": "jest",
"test": "npm run test:ts && npm run test:lint && npm run test:unit",
"storybook": "node .storybook/sourceCodeUtils/executeReadSource && start-storybook -s ./static",
"build-storybook": "node .storybook/sourceCodeUtils/executeReadSource && build-storybook -s ./static -c .storybook -o .dist",
"local": "parcel ./runLocally/index.html"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/react-redux": "^7.1.3",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^6.4.0",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.9.0",
"parcel": "^1.12.3",
"postcss-modules": "^1.4.1",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"dependencies": {
"@blueprintjs/core": "3.18.1",
"@blueprintjs/select": "^3.10.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@storybook/react": "^5.2.1",
"classnames": "^2.2.6",
"diff": "^4.0.1",
"front-matter": "^3.0.2",
"immer": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.1",
"react-syntax-highlighter": "^10.0.3",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
}
}