-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "solitaire",
"version": "1.0.0",
"description": "A small solitaire game to get familiar with ES6, Redux & React",
"main": "src/index.js",
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"classnames": "^2.2.5",
"lodash.flow": "^3.5.0",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"css-loader": "^0.24.0",
"deep-freeze": "0.0.1",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-mocha": "^4.4.0",
"eslint-plugin-react": "^6.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"node-sass": "^3.8.0",
"postcss-loader": "^0.11.0",
"precss": "^1.4.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"scripts": {
"dev": "node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --config webpack.config.dev.js --host 0.0.0.0",
"test": "node_modules/karma/bin/karma start",
"lint": "node_modules/eslint/bin/eslint.js .",
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.prod.js"
},
"repository": {},
"author": "Denis Hovart",
"license": "CC-BY-NC-4.0"
}