-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.58 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
69
70
71
72
73
74
75
76
77
{
"name": "picturebook",
"version": "2.0.0-beta.24",
"description": "Opinionated Storybook Setup",
"main": "dist/index.js",
"browser": "dist/picturebook.web.js",
"repository": "https://github.com/obartra/picturebook",
"author": "Oscar Bartra",
"license": "MIT",
"files": [
"src",
"dist"
],
"scripts": {
"format": "prettier --write \"{{src,test,sampleFolder}/**/,}*.js\"",
"test": "jest",
"lint": "eslint --ext .js --cache .",
"build": "webpack --mode production --config webpack.build.config.js && babel src -d dist --copy-files",
"build:watch": "yarn build --watch",
"test:watch": "yarn test --watch",
"start": "yarn && yarn build && cd sampleFolder && yarn && yarn start",
"test:app": "cd sampleFolder && yarn test --env chrome,firefox,ie11,edge,safari,iphone7",
"test:app-local": "cd sampleFolder && yarn test --env chrome_local",
"test:app-all": "cd sampleFolder && yarn test --env chrome,chrome_local,firefox,ie11,edge,safari,iphone7",
"update-deps": "bash ./scripts/updateDeps.sh",
"ci": "yarn build && yarn lint && yarn flow check && yarn test"
},
"dependencies": {
"chromedriver": "2.45.0",
"fs-extra": "7.0.1",
"lodash": "4.17.11",
"png-crop": "0.0.2",
"resemblejs": "3.0.0",
"rimraf": "2.6.2",
"selenium-server-standalone-jar": "3.141.5"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.2.0",
"@storybook/react": "4.0.12",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-plugin-require-context-hook": "1.0.0",
"clean-webpack-plugin": "1.0.0",
"eslint": "5.10.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.1.2",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"flow-bin": "0.88.0",
"flow-typed": "2.5.1",
"jest": "23.6.0",
"nightwatch": "0.9.21",
"prettier": "1.15.3",
"react": "16.6.3",
"react-dom": "16.6.3",
"webpack": "4.27.1",
"webpack-cli": "3.1.2"
},
"peerDependencies": {
"nightwatch": ">=0.9.x"
}
}