forked from mackiedrew/beehive
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 3.02 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "beehive",
"private": false,
"license": "MIT",
"repository": "http://github.com/mackbrowne/beehive/",
"scripts": {
"start": "MONGO_URL=mongodb://localhost:27017/beehive meteor run",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"lint:check": "./node_modules/.bin/eslint --print-config .eslintrc.js | ./node_modules/.bin/eslint-config-prettier-check",
"test": "jest --silent",
"test:snap": "jest -u",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.44",
"bootstrap": "4.1.0",
"history": "^4.7.2",
"meteor-node-stubs": "0.4.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"reactstrap": "^5.0.0-beta.3",
"redux": "4.0.0",
"redux-saga": "0.16.0",
"request": "^2.85.0",
"reselect": "4.0.0",
"simpl-schema": "1.5.3",
"styled-components": "^3.2.5",
"underscore": "1.9.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-flow": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"autoprefixer": "8.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "8.2.3",
"babel-jest": "^22.4.3",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "4.19.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "7.7.0",
"husky": "1.1.1",
"jest": "22.4.3",
"jest-css-modules": "^1.1.0",
"jest-meteor-stubs": "github:mackbrowne/jest-meteor-stubs#master",
"lint-staged": "^5.0.0",
"prettier": "^1.12.0",
"react-test-renderer": "^16.3.1",
"redux-devtools": "3.4.1",
"redux-saga-test-plan": "^3.2.0"
},
"lint-staged": {
"**/*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
},
"jest": {
"setupFiles": [
"<rootDir>/tests/jestSetup.js"
],
"transform": {
"^.+\\.js?$": "babel-jest",
"^.+\\.(css|scss|less)$": "jest-css-modules"
},
"moduleFileExtensions": [
"js"
],
"modulePaths": [
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"^(.*):(.*)$": "<rootDir>/node_modules/jest-meteor-stubs/lib/$1_$2",
"meteor/(.*)": "<rootDir>/node_modules/jest-meteor-stubs/lib/meteor/$1"
},
"unmockedModulePathPatterns": [
"/^imports\\/.*\\.js?$/",
"/^node_modules/"
],
"collectCoverage": true,
"coverageDirectory": ".coverage",
"collectCoverageFrom": [
"imports/**/*.js"
],
"coverageReporters": [
"lcov",
"html"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-flow"
]
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}