-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
{
"name": "meteor-react-bp",
"version": "1.0.0",
"description": "A meteor application using React and many of the Facebook tooling libraries.",
"main": "main.js (both client/ & server/)",
"repository": {
"type": "git",
"url": "https://github.com/stevenjmarsh/meteor-react-bp.git"
},
"keywords": [
"meteor",
"react",
"jest",
"storybook",
"flow",
"yarn",
"eslint"
],
"author": "Steve Marsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenjmarsh/meteor-react-bp/issues"
},
"homepage": "https://github.com/stevenjmarsh/meteor-react-bp",
"scripts": {
"start": "meteor run",
"lint": "eslint . --ext .js,.jsx --ignore-pattern 'packages/**'",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"flow:check": "flow check",
"flow:status": "flow status",
"flow:stop": "flow stop",
"pretest": "yarn run lint && yarn run flow:check",
"test": "yarn run unit-test",
"unit-test": "jest -c .jest-config.json",
"unit-test-w": "yarn run unit-test -- --watchAll",
"storybook": "start-storybook -s ./public -p 9001 -c .storybook"
},
"dependencies": {
"babel-runtime": "^6.22.0",
"glamor": "^2.20.22",
"meteor-node-stubs": "~0.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-knobs": "^1.7.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"cheerio": "^0.22.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.41.0",
"jest": "^18.1.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"lodash": "^4.17.4",
"react-addons-test-utils": "^15.4.2",
"react-storybook-addon-backgrounds": "^0.0.7",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.13.1"
}
}