-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
32 lines (32 loc) · 976 Bytes
/
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
{
"name": "react-advpl-example",
"version": "0.0.1",
"description": "Sample project that uses React and Advpl",
"repository": {
"type": "git",
"url": "https://github.com/vitorebatista/react-advpl-example"
},
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors"
},
"private": true,
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"html-webpack-plugin": "^2.24.1",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^2.4.1",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"material-ui": "latest",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.7",
"react-tap-event-plugin": "^2.0.1"
}
}