forked from mackbrowne/beehive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.63 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.63 KB
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
{
"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",
"prepush": "npm run lint && npm test"
},
"dependencies": {
"babel-runtime": "6.25.0",
"bootstrap": "4.0.0-alpha.6",
"meteor-node-stubs": "0.2.4",
"react": "15.6.1",
"react-addons-css-transition-group": "15.6.0",
"react-addons-transition-group": "15.6.0",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"react-router-dom": "4.1.2",
"react-transition-group": "1.1.2",
"reactstrap": "4.8.0",
"redux": "3.7.2",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"simpl-schema": "0.3.2",
"underscore": "1.8.3"
},
"devDependencies": {
"autoprefixer": "7.1.2",
"babel-eslint": "7.2.3",
"babel-jest": "21.0.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"eslint": "4.9.0",
"eslint-config-prettier": "2.3.0",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-react": "7.1.0",
"husky": "0.14.3",
"jest": "21.2.1",
"jest-meteor-stubs": "github:mackbrowne/jest-meteor-stubs#master",
"prettier": "1.5.3",
"react-test-renderer": "^15.6.1",
"redux-devtools": "3.4.0",
"redux-saga-test-plan": "^3.2.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/jestSetup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"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\\/.*\\.jsx?$/",
"/^node_modules/"
],
"collectCoverage": true,
"coverageDirectory": ".coverage",
"collectCoverageFrom": [
"imports/**/*.js",
"imports/**/*.jsx"
],
"coverageReporters": [
"lcov",
"html"
]
},
"babel": {
"presets": [
"env",
"react"
]
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}