-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
{
"name": "Tetris_game",
"version": "0.0.1",
"description": "Old game tetris",
"scripts": {
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"clean": "rimraf dist",
"prod": "NODE_ENV=production PORT=80 babel-node server.js",
"start": "babel-node server.js",
"test:data": "./node_modules/.bin/mocha -w --compilers js:babel-core/register --recursive 'data/test/**/*.test.js'",
"test:dataCoverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --compilers js:babel-core/register --recursive 'data/test/**/*.test.js'"
},
"author": "Bojan Dragojevic",
"dependencies": {
"babel-plugin-transform-class-properties": "^6.11.5",
"body-parser": "^1.15.1",
"classnames": "^2.2.5",
"isomorphic-fetch": "^2.2.1",
"jsxstyle": "^1.0.2",
"lodash": "^4.12.0",
"prop-types": "^15.5.10",
"react": "^15.0.2",
"react-addons-create-fragment": "^15.3.1",
"react-dom": "^15.0.2",
"react-paginate": "^2.2.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "4.0.4",
"react-select": "^0.9.1",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "6.2.0",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.20.2",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"happypack": "^2.1.1",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^1.8.0",
"istanbul": "^1.0.0-alpha.2",
"json-loader": "^0.5.4",
"mocha": "^3.4.2",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react-toggle": "^2.1.0",
"react-toggle-display": "^2.0.2",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}