-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.36 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"scripts": {
"start": "node start.js",
"build": "babel-node build.js",
"build:serve": "npm run build serve",
"build:serve:release": "npm run build:serve release",
"build:release": "npm run build release",
"test": "karma start",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"deploy": "npm run build:release && gh-pages -d build",
"stats": "npm run build:release profile"
},
"devDependencies": {
"autoprefixer": "6.3.3",
"babel-cli": "6.5.1",
"babel-core": "6.5.2",
"babel-eslint": "5.0.0",
"babel-istanbul-loader": "0.0.3",
"babel-loader": "6.2.3",
"babel-plugin-lodash": "2.1.0",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"bourbon": "4.2.6",
"browser-sync": "2.11.1",
"colorguard": "1.0.1",
"css-loader": "0.23.1",
"del": "2.2.0",
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-config-react": "1.1.1",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "4.1.0",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"fs-extra": "0.26.5",
"fs-promise": "0.4.1",
"gh-pages": "0.10.0",
"html-webpack-plugin": "2.9.0",
"html-webpack-template": "4.0.0",
"jasmine-core": "2.4.1",
"jscs": "2.10.1",
"jscs-loader": "0.2.0",
"karma": "0.13.21",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.7",
"karma-jasmine-diff-reporter": "0.3.4",
"karma-jasmine-html-reporter": "0.2.0",
"karma-mocha-reporter": "1.2.1",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"lodash": "4.5.1",
"material-colors": "1.0.0",
"node-sass": "3.4.2",
"normalize.css": "3.0.3",
"npm-install-webpack-plugin": "2.0.2",
"null-loader": "0.1.1",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "2.1.4",
"postcss": "5.0.16",
"postcss-import": "8.0.2",
"postcss-loader": "0.8.1",
"precss": "1.4.0",
"progress": "1.1.8",
"react-addons-test-utils": "0.14.7",
"react-hot-loader": "1.3.0",
"react-immutable-proptypes": "1.7.0",
"redux-devtools": "3.1.1",
"redux-logger": "2.6.0",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"webpack": "1.12.14",
"webpack-dev-middleware": "1.5.1",
"webpack-hot-middleware": "2.7.1"
},
"dependencies": {
"classnames": "2.2.3",
"immutable": "3.7.6",
"localforage": "1.4.0",
"node-uuid": "1.4.7",
"react": "0.14.7",
"react-document-title": "2.0.1",
"react-dom": "0.14.7",
"react-motion": "0.4.2",
"react-redux": "4.4.0",
"redux": "3.3.1",
"redux-immutable": "3.0.5",
"redux-thunk": "1.0.3"
},
"name": "2048",
"description": "> A static website powered by [React.js](http://facebook.github.io/react/) > and [Webpack](http://webpack.github.io/).",
"version": "0.0.1",
"main": "src/app.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bionikspoon/2048.git"
},
"keywords": [
"2048",
"react",
"redux",
"manu",
"phatak"
],
"author": "Manu Phatak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bionikspoon/2048/issues"
},
"homepage": "https://github.com/bionikspoon/2048#readme"
}