-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4.1 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "maker",
"version": "0.1.0",
"description": "makershare",
"main": "dist-server/index.js",
"repository": {
"type": "git",
"url": "[email protected]:Make-Magazine/makershare-frontend.git"
},
"scripts": {
"build": "npm-run-all --parallel build:client build:server",
"build:dev": "npm-run-all --parallel build:client:dev build:server",
"build:client": "webpack --define process.env.NODE_ENV=\"production\" --config webpack-client.config.js",
"build:client:dev": "webpack --define process.env.NODE_ENV=\"development\" --config webpack-client.config.js",
"build:server": "webpack --define process.env.NODE_ENV=\"production\" --config webpack-server.config.js",
"build:client:watch": "webpack --watch --config webpack-client.config.js",
"build:server:watch": "webpack --config webpack-server.config.js --watch",
"watch": "npm-run-all --parallel build:client:watch build:server:watch start:watch",
"start": "npm run run-server",
"run-server": "nodemon ./dist-server/index.js",
"start:watch": "nodemon -C ./dist-server/index.js",
"buildall": "./build.sh && ./verify.sh && npm run copyassets && npm run setExecute && npm run sassIt && ./finish.sh",
"buildstage": "./build.sh && ./verify.sh && ./stage.sh && npm run copyassets && npm run setExecute && npm run sassIt && ./finish.sh",
"buildstage:dev": "./build-dev.sh && ./verify.sh && ./stage.sh && npm run copyassets && npm run setExecute && npm run sassIt && ./finish.sh",
"buildlocal": "./build.sh && ./verify.sh && npm run copyassets && npm run setExecute && npm run sassIt && npm run startLocalServer",
"buildlocal:dev": "./build-dev.sh && ./verify.sh && npm run copyassets && npm run sassIt",
"copyassets": "cp -rf src/assets dist/",
"setExecute": "chmod 755 -R dist/ dist-server/",
"sassIt": "sass src/assets/css/style.scss dist/assets/css/style.css",
"startServer": "pm2 restart all",
"startLocalServer": "ng serve"
},
"license": "BSD-2-Clause",
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@angular-devkit/core": "0.0.29",
"@angular-devkit/schematics": "0.0.34",
"@angular/animations": "4.4.5",
"@angular/common": "4.4.5",
"@angular/compiler": "4.4.5",
"@angular/compiler-cli": "4.4.5",
"@angular/core": "4.4.5",
"@angular/forms": "4.4.5",
"@angular/http": "4.4.5",
"@angular/platform-browser": "4.4.5",
"@angular/platform-browser-dynamic": "4.4.5",
"@angular/router": "4.4.5",
"@angular/service-worker": "^1.0.0-beta.8",
"@angular/tsc-wrapped": "4.4.5",
"@ng-bootstrap/ng-bootstrap": "1.0.0-beta.5",
"@ngrx/store": "4.0.3",
"@types/cookie-parser": "1.4.1",
"@types/express": "4.0.37",
"@types/node-fetch": "1.6.7",
"angular-router-loader": "0.6.0",
"angular-ssr": "^0.10.40",
"angular2-jwt": "0.2.3",
"angular2-template-loader": "0.6.2",
"auth0-js": "^9.3.3",
"auth0-lock": "^11.3.1",
"cookie-parser": "1.4.3",
"core-js": "^2.5.7",
"css-loader": "0.28.7",
"express": "4.16.2",
"express-blank-favicon": "1.0.1",
"extract-text-webpack-plugin": "3.0.1",
"hammerjs": "2.0.8",
"html-webpack-plugin": "2.30.1",
"ng-recaptcha": "3.0.2",
"ng2-ckeditor": "1.1.9",
"ng2-dnd": "4.2.0",
"ng2-file-drop": "1.1.0",
"ng2-img-cropper": "0.9.0",
"ng2-page-scroll": "4.0.0-beta.11",
"ng2-validation": "4.2.0",
"ngx-cookie": "1.0.0",
"ngx-notification-bar": "0.1.2",
"ngx-sharebuttons": "3.0.0",
"node-fetch": "1.7.3",
"node-sass": "^4.9.3",
"nodemon": "^1.18.1",
"npm-run-all": "^4.1.1",
"php-loader": "^0.2.0",
"preboot": "4.5.2",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.10",
"service-worker": "0.0.0",
"to-string-loader": "1.1.5",
"ts-loader": "2.3.7",
"ts-node": "3.3.0",
"typescript": "2.3.2",
"typings": "^2.1.1",
"web-animations-js": "2.3.1",
"webpack": "3.6.0",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/cli": "1.4.7",
"@types/jquery": "^3.3.2",
"@types/tapable": "^0.2.5",
"codelyzer": "3.2.1",
"tslint": "5.7.0"
}
}