This repository has been archived by the owner on Jul 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.64 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
{
"name": "ShadowRunMasterTool",
"version": "0.1.0",
"description": "ShadowRunMasterTool",
"main": "index.js",
"bin": "./node_modules/.bin",
"scripts": {
"postinstall" : "node ./scripts/del-redux-search-website.js",
"build": "npm run build:dev",
"build:watch": "npm run build:dev -- --watch",
"build:dev": "npm run clean:build && webpack --progress --colors --config webpack.dev.config.js",
"build:prod": "webpack --config webpack.prod.config.js",
"clean:build": "rimraf build",
"lint": "eslint src --config .eslintrc.js --fix",
"flow": "flow",
"test": "mocha .test.setup.js --compilers js:babel-core/register --recursive src/**/*.spec.js"
},
"pre-commit" : [
"flow",
"lint"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/salztorte/ShadowRunMasterTool.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/salztorte/ShadowRunMasterTool/issues"
},
"homepage": "/~https://github.com/salztorte/ShadowRunMasterTool#readme",
"dependencies": {
"grommet": "1.0.1",
"immutable": "3.7.5",
"react": "^15.3.2",
"react-addons-shallow-compare": "^15.3.2",
"react-dom": "^15.3.2",
"react-immutable-proptypes": "^2.1.0",
"react-infinite": "^0.10.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-search": "^2.3.1",
"redux-thunk": "^2.1.0",
"reselect": "2.0.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"enzyme": "^2.7.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.36.0",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
"node-sass": "^3.11.1",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.3.2",
"redux-mock-store": "^1.2.1",
"replace-webpack-plugin": "^0.1.2",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"svg-react-loader": "^0.3.7",
"webpack": "2.1.0-beta.28"
}
}