forked from vert-x3/vertx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (34 loc) Β· 1.06 KB
/
package.json
File metadata and controls
44 lines (34 loc) Β· 1.06 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
{
"name": "vertx-reactjs-server-side-rendering",
"version": "1.0.0",
"description": "Example showing how to mix react.js and vert.x and server side rendering",
"mainVerticle": "server.js",
"scripts": {
"clean": "rm -Rf .vertx",
"install": "node ./webpack.config.js",
"postinstall": "mvn -f .vertx/pom.xml package",
"build": "./node_modules/.bin/webpack",
"build:release": "npm run clean && ./node_modules/.bin/webpack -p && npm run clean",
"prestart": "npm run build:release",
"start": "java -jar run.jar",
"watch": "npm run start -- --redeploy=\"src/**\" --on-redeploy=\"npm run watch\""
},
"author": "Paulo Lopes",
"license": "MIT",
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"webpack": "^2.2.0"
},
"javaDependencies": {
"io.vertx:vertx-lang-js": "3.5.1",
"io.vertx:vertx-web": "3.5.1"
}
}