-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.17 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "demo_app",
"version": "1.0.0",
"private": true,
"description": "RevJS Demo App",
"main": "./dist/server.js",
"repository": "https://github.com/RevJS/demo_app.git",
"author": "Russell Briggs <russ@paraflyer.net>",
"license": "MIT",
"scripts": {
"build": "npm run build-server && npm run build-clientlibs && npm run build-client",
"build-client": "webpack --mode production --config ./conf/webpack.client.config.js",
"build-clientlibs": "webpack --mode production --config ./conf/webpack.clientlibs.config.js",
"build-server": "tslint -p . && tsc",
"build-standalone": "webpack --mode production --config ./conf/webpack.client_standalone.config.js",
"start": "node ./dist/server/server.js",
"test": "",
"watch-client": "webpack --mode development --config ./conf/webpack.client.config.js --watch",
"watch-server": "cross-env NODE_ENV=development nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' src/server/server.tsx",
"client-stats": "webpack --config ./conf/webpack.client.config.js --profile --json > client-stats.json"
},
"dependencies": {
"apollo-server-koa": "1.3.3",
"koa": "2.5.0",
"koa-bodyparser": "4.2.0",
"koa-json-log": "2.0.2",
"koa-mount": "3.0.0",
"koa-router": "7.4.0",
"koa-static": "4.0.2",
"material-ui": "1.0.0-beta.41",
"@material-ui/icons": "1.0.0-beta.42",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-router-dom": "4.2.2",
"rev-api": "0.17.0",
"rev-api-client": "0.17.0",
"rev-models": "0.17.0",
"rev-ui": "0.17.0",
"rev-ui-materialui": "0.17.0",
"source-map-support": "0.5.4"
},
"devDependencies": {
"@types/graphql": "0.12.7",
"@types/koa": "2.0.44",
"@types/koa-bodyparser": "4.2.0",
"@types/koa-mount": "3.0.1",
"@types/koa-router": "7.0.27",
"@types/koa-static": "4.0.0",
"@types/node": "9.6.0",
"@types/react": "16.1.0",
"@types/react-dom": "16.0.4",
"@types/react-router-dom": "4.2.6",
"cross-env": "5.1.4",
"nodemon": "1.17.2",
"ts-loader": "4.1.0",
"ts-node": "5.0.1",
"tslint": "5.9.1",
"typescript": "2.8.1",
"webpack": "4.3.0",
"webpack-cli": "2.0.13"
}
}