-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 3.47 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
{
"name": "lancers-redux-app-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:LancersDevTeam/lancers-redux-app-boilerplate.git",
"author": "mori-dev <mori.dev.asdf@gmail.com>",
"license": "MIT",
"scripts": {
"typecheck": "./node_modules/.bin/flow check",
"lint": "./node_modules/.bin/eslint ./src",
"lint:src": "./node_modules/.bin/eslint ./src",
"lint:test": "./node_modules/.bin/eslint ./test",
"lint:src:fix": "./node_modules/.bin/eslint --fix ./src",
"lint:test:fix": "./node_modules/.bin/eslint --fix ./test",
"gen:sourcemap": "NODE_ENV=production webpack --config webpack.config.production.js --progress --color",
"dev": "NODE_ENV=development webpack-dev-server --config webpack.config.development.js --progress --color",
"build:prod": "rm -rf ./www/js/* && NODE_ENV=production webpack --config webpack.config.production.js --progress --color",
"stylelint": "./node_modules/.bin/stylelint 'src/**/*.css'"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-react-css-modules": "^2.2.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-register": "^6.22.0",
"css-loader": "^0.26.1",
"dotenv": "^4.0.0",
"enzyme": "^2.7.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"flow-status-webpack-plugin": "^0.1.7",
"flowtype": "^2.0.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"power-assert": "^1.4.2",
"react-addons-test-utils": "^15.4.2",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-webpack-plugin": "^0.5.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1",
"write-file-webpack-plugin": "^3.4.2"
},
"dependencies": {
"deep-equal": "^1.0.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"history": "^4.6.1",
"humps": "^2.0.0",
"lodash": "^4.17.4",
"material-ui": "^0.16.7",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-actions": "^1.2.1",
"redux-logger": "^2.7.4",
"redux-saga": "^0.14.3",
"superagent": "^3.4.1"
}
}