-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.66 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
{
"scripts": {
"storybook": "start-storybook",
"build-storybook": "build-storybook -c .storybook -o .dist",
"start": "parcel ./runLocally/index.html",
"test:unit": "jest",
"test:lint": "eslint src .eslintplugin .storybook --ext .js,.jsx,.mjs",
"test": "npm run test:unit && npm run test:lint"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^5.1.3",
"@storybook/addon-links": "^5.1.10",
"@storybook/addon-notes": "^5.1.3",
"@storybook/react": "^5.1.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"core-js": "^3.1.3",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.2",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"parcel-bundler": "^1.12.3",
"postcss-modules": "^1.4.1",
"prettier": "^1.18.2",
"storybook-addon-jsx": "^7.1.2",
"style-loader": "^0.23.1"
},
"dependencies": {
"@blueprintjs/core": "^3.18.0",
"@blueprintjs/select": "^3.10.0",
"classnames": "^2.2.6",
"create-react-class": "^15.6.3",
"jquery": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-syntax-highlighter": "^10.3.0",
"recompose": "^0.30.0"
},
"jest": {
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js",
"./jest.setup.js"
]
}
}