-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@youversion/melos",
"version": "0.0.14",
"description": "Open source library of React components from the YouVersion Bible.com team",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"compile": "babel src --out-dir dist --copy-files",
"watch": "babel src --out-dir dist --copy-files --watch",
"storybook": "start-storybook -p 6006",
"build_storybook": "build-storybook -c .storybook -o docs",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "[email protected]:lifechurch/melos.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@youversion/utils": "^1.0.42",
"glamor": "^2.20.40",
"glamorous": "^4.11.0",
"immutable": "^3.8.1",
"jest-glamor-react": "^1.2.0",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^3.0.5",
"react-test-renderer": "^15.6.2",
"react-waypoint": "^7.3.4"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"testMatch": [
"**/src/**/__tests__/**/*.js?(x)",
"**/src/**/?(*.)(spec|test).js?(x)"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss|less)$": "identity-obj-proxy"
},
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs",
"enzyme",
"domhandler",
"object.assign",
"define-properties",
"function-bind",
"object-keys"
],
"modulePaths": [
"./node_modules"
],
"moduleFileExtensions": [
"js",
"jsx"
]
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.13",
"@storybook/addon-info": "^3.2.13",
"@storybook/addon-links": "^3.2.13",
"@storybook/react": "^3.2.13",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^19.0.2",
"jest-cli": "^20.0.3",
"jest-enzyme": "^3.0.0",
"jsdom": "^9.12.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"react-storybook-addon-chapters": "^2.0.0",
"webpack": "^3.0.0"
}
}