forked from koodi101/lesson2-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "lesson2-react-template",
"version": "0.0.1",
"description": "Lesson 2 - Koodi101 React Template",
"author": "Marko Klemetti <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koodi101/lesson2-react-template.git"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.development.js --progress --inline --colors"
},
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.52",
"@babel/polyfill": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.52",
"babel-loader": "^8.0.0-beta.4",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}