-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.21 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
65
66
67
68
{
"name": "vscode-react-babel-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config ./config/jest.config.js --coverage",
"start": "webpack-dev-server --config ./config/webpack.dev.js",
"start:open": "npm start -- --open",
"build": "webpack --config ./config/webpack.prod.js",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e:run": "start-server-and-test start http://localhost:4000 cy:run",
"test:e2e:dev": "start-server-and-test start http://localhost:4000 cy:open",
"lint": "eslint . --cache",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.11",
"@storybook/addon-graphql": "^4.0.12",
"@storybook/addon-links": "^4.0.11",
"@storybook/addons": "^4.0.11",
"@storybook/react": "^4.0.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"cypress": "^3.1.2",
"cypress-testing-library": "^2.3.4",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"paths.macro": "^2.0.2",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2",
"prisma": "^1.22.2",
"react-testing-library": "^5.3.1",
"sass-loader": "^7.1.0",
"start-server-and-test": "^1.7.11",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"workbox-webpack-plugin": "^3.6.3"
},
"dependencies": {
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2"
}
}