-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "snapguidist",
"version": "4.0.0",
"description": "Snapshot testing for React Styleguidist",
"repository": "https://github.com/styleguidist/snapguidist.git",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "styleguidist server --config example/styleguide.config.dev.js",
"test": "jest",
"lint": "eslint --ignore-path .gitignore ./",
"build:watch": "babel --watch src -d lib --copy-files",
"build": "babel src -d lib --copy-files",
"prepublish": "yarn run build",
"precommit": "opt --out pre-commit --exec 'yarn run lint-staged'",
"prepush": "opt --out pre-push --exec 'yarn run lint-staged && yarn run test'"
},
"authors": [
"Michele Bertoli",
"Matteo Ronchi"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-jest": "23.4.2",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"enzyme": "3.4.3",
"enzyme-adapter-react-16": "1.2.0",
"enzyme-to-json": "3.3.4",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"express": "4.16.3",
"fs-extra": "7.0.0",
"husky": "0.14.3",
"jest": "23.5.0",
"lint-staged": "7.2.2",
"opt-cli": "1.6.0",
"prop-types": "15.6.2",
"react": "16.4.2",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.4.2",
"react-styleguidist": "7.2.3",
"supertest": "3.1.0",
"webpack": "4.16.5"
},
"dependencies": {
"body-parser": "1.18.3",
"classnames": "2.2.6",
"codemirror": "5.39.2",
"cors": "2.8.4",
"jest-diff": "23.5.0",
"jest-snapshot": "23.5.0",
"react-codemirror2": "5.1.0",
"react-test-renderer": "16.4.2",
"strip-ansi": "4.0.0",
"unfetch": "3.1.1"
},
"peerDependencies": {
"react": ">=15",
"react-styleguidist": ">=5.4.4",
"webpack": ">=1.14.0"
},
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/testSetup.js"
}
}