forked from SparkDevNetwork/Rock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.9 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
{
"name": "rock",
"version": "1.6.1",
"description": "An open source CMS, Relationship Managment System (RMS) and Church Managment System (ChMS) all rolled into one http://rockrms.com",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "cross-env NODE_ENV=production webpack --config ./RockWeb/webpack.config.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./RockWeb/webpack.config.js --progress --colors",
"flow": "flow check || exit 0",
"flow:stop": "flow stop",
"lint": "eslint ./RockWeb/Scripts/React ./RockWeb/Blocks ./RockWeb/Plugins",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkDevNetwork/Rock.git"
},
"author": "SparkDevNetwork",
"license": "ISC",
"bugs": {
"url": "https://github.com/SparkDevNetwork/Rock/issues"
},
"homepage": "https://github.com/SparkDevNetwork/Rock#readme",
"dependencies": {
"lodash": "^4.17.4",
"preact": "^7.1.0",
"preact-compat": "^3.9.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-injectable-store": "^1.0.0",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.4",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-compat": "^0.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.8.0",
"expose-loader": "^0.7.1",
"flow-bin": "^0.37.4",
"jest": "^18.1.0",
"lodash-webpack-plugin": "^0.10.7",
"npm-install-webpack-plugin": "^4.0.4",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.2.0-rc.0"
},
"jest": {
"coverageDirectory": "./.coverage",
"coveragePathIgnorePatterns": [
"__stories__/",
"__mocks__/",
"Bin/",
"dist/",
"<rootDir>/RockWeb/webpack.*"
],
"testPathDirs": [
"<rootDir>/RockWeb/Scripts/React/",
"<rootDir>/RockWeb/Blocks/"
],
"browser": true
}
}