-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.9 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.9 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
{
"name": "pmt",
"version": "1.1.0-rc2",
"description": "",
"private": true,
"main": "server.js",
"scripts": {
"installDev": "yarn install",
"start": "node server.js",
"installBuild": "yarn install && cd pmt-app && yarn install",
"build": "webpack -p --env production --config webpack.config.production.js",
"installProd": "cd dist && yarn --production install",
"prod": "NODE_ENV=production node dist/server.js",
"installTest": "cd pmt-data-access && yarn install && cd .. && cd pmt-io && yarn install && cd .. && cd pmt-validation && yarn install",
"test": "mocha --recursive ./pmt-io/test ./pmt-data-access/test ./pmt-validation/test",
"win": "cd dist && npmAddScript -k preinstall -v \"stop-service && uninstall-service\" -f && npmAddScript -k postinstall -v \"install-service && start-service\" -f && bundled-dependencies"
},
"author": "interactive instruments GmbH",
"license": "GPL-3.0",
"devDependencies": {
"bundled-dependencies": "^2.1.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"link-parent-bin": "^0.1.2",
"mocha": "^3.4.2",
"npe": "^1.1.0",
"npm-add-script": "^1.1.0",
"webpack": "^2.2.0",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"compression": "^1.6.2",
"convict": "^5.2.0",
"express": "^4.15.3",
"http-shutdown": "^1.2.0",
"pmt-backend": "^1.0.0",
"pmt-data-access": "^1.0.0",
"pmt-io": "^1.0.0",
"pmt-validation": "^1.0.0"
},
"workspaces": [
"./pmt-backend",
"./pmt-data-access",
"./pmt-io",
"./pmt-validation",
"../pmt-backend",
"../pmt-data-access",
"../pmt-io",
"../pmt-validation"
]
}