forked from koodi101/lesson2-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 925 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 925 Bytes
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
{
"name": "react-tictactoe",
"version": "0.0.1",
"description": "Koodi101 React TicTacToe",
"author": "Marko Klemetti <marko.klemetti@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koodi101/react-tictactoe.git"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.development.js --progress --inline --colors"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.20.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}