-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.97 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
{
"name": "visual-regression-testing-react-storybook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test:unit": "mocha --require @babel/register --require ./test/helpers.js --require ./test/dom.js --require ignore-styles 'src/**/*.spec.js'",
"test:unit:watch": "npm run test:unit -- --watch",
"test:snapshot": "jest --config ./test/jest.config.json",
"test:snapshot:watch": "npm run test:snapshot -- --watch",
"test:cypress": "start-server-and-test start http://localhost:8080 cypress",
"cypress": "cypress run",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^4.0.2",
"@storybook/addon-knobs": "^4.0.2",
"@storybook/addon-storyshots": "^4.0.2",
"@storybook/addon-storyshots-puppeteer": "^4.0.2",
"@storybook/addon-viewport": "^4.0.2",
"@storybook/react": "^4.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-require-context-hook": "^1.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cypress": "^3.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"ignore-styles": "^5.0.1",
"jest": "^23.6.0",
"jsdom": "^13.0.0",
"mocha": "^5.2.0",
"react-hot-loader": "^4.3.12",
"react-test-renderer": "^16.6.0",
"sinon": "^7.1.1",
"start-server-and-test": "^1.7.7",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"axios": "^0.18.0",
"react": "^16.6.0",
"react-dom": "^16.6.0"
}
}