-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "react-mobx-tic-tac-toe",
"version": "0.1.0",
"description": "Simple Tic Tac Toe game built with on top of ReactJS and MobX",
"main": "",
"scripts": {
"build": "webpack --progress --profile --colors",
"serve": "webpack-dev-server --progress --profile --color",
"poststart": "npm run build",
"start": "npm run serve",
"lint": "eslint --ext js --ext jsx src || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/moaali/react-mobx-tic-tac-toe"
},
"author": "Mo Ali",
"license": "MIT",
"homepage": "https://github.com/moaali/react-mobx-tic-tac-toe",
"dependencies": {
"node-sass": "^4.3.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"sass-loader": "^6.0.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.23.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"lodash": "^4.17.4",
"mobx": "^3.2.1",
"mobx-react": "^4.2.2",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.2.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
}
}