-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.35 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.35 KB
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
{
"name": "bomberman",
"version": "1.0.0",
"description": "Play bomberman in your browser",
"main": "src/index.js",
"repository": "https://github.com/albertfdp/boilerplate",
"author": "Albert Fernández <albert@nandez.cat>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --history-api-fallback",
"build": "NODE_ENV=production webpack --progress",
"build:netlify": "NODE_ENV=production webpack",
"lint": "standard",
"test": "jest",
"test:watch": "jest --watch",
"travis": "yarn run lint && yarn run test"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.3.2",
"babel-plugin-module-resolver": "2.5.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.1.8",
"babel-preset-react": "6.23.0",
"classnames": "2.2.5",
"css-loader": "0.26.1",
"csscomb": "4.0.0",
"emojis-list": "2.1.0",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"file-loader": "0.10.0",
"html-webpack-plugin": "2.28.0",
"identity-obj-proxy": "3.0.0",
"immutable": "3.8.1",
"jest": "18.1.0",
"keycodes": "0.2.4",
"offline-plugin": "4.6.1",
"postcss-cssnext": "2.9.0",
"postcss-import": "9.1.0",
"postcss-loader": "1.3.1",
"randomcolor": "0.4.4",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-modal": "1.6.5",
"react-redux": "5.0.2",
"react-router-dom": "next",
"react-svg-loader": "1.1.1",
"react-test-renderer": "15.4.2",
"redux": "3.6.0",
"redux-devtools": "3.3.2",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.2.0",
"redux-thunk": "2.2.0",
"reselect": "2.5.4",
"standard": "8.6.0",
"standard-loader": "5.0.0",
"style-loader": "0.13.1",
"unexpected": "10.26.0",
"unexpected-react": "3.4.0",
"url-loader": "0.5.7",
"webpack": "2.2.1",
"webpack-dev-server": "2.3.0"
},
"standard": {
"parser": "babel-eslint",
"global": [
"__DEV__",
"__PRODUCTION__",
"describe",
"it"
]
},
"jest": {
"moduleNameMapper": {
"\\.css$": "<rootDir>/test/stubs/styles.js"
},
"testRegex": "\\.*(spec\\.js)$"
}
}