forked from TerriaJS/TerriaMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 3.12 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "terriajs-map",
"version": "0.0.1",
"description": "Geospatial catalog explorer based on TerriaJS.",
"license": "Apache-2.0",
"engines": {
"node": ">= 5.1.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "http://github.com/TerriaJS/TerriaMap"
},
"dependencies": {
"terriajs-server": "^2.6.2"
},
"config": {
"awsProfile": "terria",
"awsS3PackagesPath": "s3://terria-apps/map",
"awsRegion": "ap-southeast-2",
"awsEc2InstanceType": "t2.medium",
"awsEc2ImageId": "ami-2a644649",
"awsKeyName": "terria-kring",
"awsS3ServerConfigOverridePath": "s3://terria-apps/map/privateserverconfig-2016-08-31.json",
"awsS3ClientConfigOverridePath": "s3://terria-apps/map/privateclientconfig-2016-08-31.json"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.28.0",
"ejs": "^2.5.2",
"eslint": "^3.10.0",
"eslint-plugin-jsx-control-statements": "2.1.1",
"eslint-plugin-react": "^6.5.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fs-extra": "^3.0.0",
"generate-terriajs-schema": "^1.3.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"json5": "^0.5.0",
"jsx-control-statements": "3.1.5",
"node-notifier": "^5.1.2",
"node-sass": "^4.0.0",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"redbox-react": "^1.3.6",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"semver": "^5.0.0",
"style-loader": "^0.17.0",
"svg-sprite-loader": "^0.3.0",
"terriajs": "5.2.3",
"terriajs-catalog-editor": "^0.2.0",
"terriajs-cesium": "1.33.0",
"terriajs-schema": "latest",
"urijs": "^1.17.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"yargs": "^8.0.1"
},
"scripts": {
"start": "bash ./node_modules/terriajs-server/run_server.sh --config-file devserverconfig.json",
"stop": "bash ./node_modules/terriajs-server/stop_server.sh",
"gulp": "gulp",
"postinstall": "echo 'Installation with NPM successful. What to do next:\\n npm start # Starts the server on port 3001\\n gulp watch # Builds NationalMap and dependencies, and rebuilds if files change.'",
"hot": "webpack-dev-server --inline --config buildprocess/webpack.config.hot.js --hot --host 0.0.0.0",
"deploy": "rm -rf node_modules && npm install && npm run deploy-without-reinstall",
"deploy-without-reinstall": "gulp clean && gulp release && npm run deploy-current",
"deploy-current": "npm run get-deploy-overrides && gulp make-package --serverConfigOverride ./privateserverconfig.json --clientConfigOverride ./wwwroot/privateconfig.json && cd deploy/aws && ./stack create && cd ../..",
"get-deploy-overrides": "aws s3 --profile $npm_package_config_awsProfile cp $npm_package_config_awsS3ServerConfigOverridePath ./privateserverconfig.json && aws s3 --profile $npm_package_config_awsProfile cp $npm_package_config_awsS3ClientConfigOverridePath ./wwwroot/privateconfig.json"
}
}