-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "salesforce-tools",
"version": "1.0.0",
"description": "Web application for managing Salesforce metadata",
"author": "Christophe Vidal",
"homepage": "github.com/Krisa/sftools",
"license": "MIT",
"main": "server/bin/web_server.js",
"private": true,
"engines": {
"node": "8.x.x",
"npm": "5.x.x",
"yarn": "1.x.x"
},
"keywords": [
"Salesforce",
"Force.com",
"Metadata",
"Deployment"
],
"scripts": {
"docs": "yarn typedoc --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"clean:all": "npm cache clean && rimraf -- node_modules doc coverage client server",
"clean:client": "rimraf client",
"clean:server": "rimraf server",
"watch:client": "ng serve --proxy-config proxy.conf.json",
"watch:client:hmr": "ng serve --hmr -e=dev-hmr --proxy-config proxy.conf.json",
"watch:server": "yarn build:server --watch",
"build:dev": "yarn build:server && yarn build:client",
"build:prod": "yarn build:server && yarn build:client:prod",
"build:client": "yarn clean:client && ng build",
"build:client:prod": "yarn clean:client && ng build --aot --prod",
"build:server": "yarn clean:server && babel src/server src/shared -x '.ts,.js' --out-dir server",
"start": "nodemon server/bin/web_server",
"start:prod": "NODE_ENV=production node server/bin/web_server"
},
"repository": {
"type": "git",
"url": "https://github.com/Krisa/sftools"
},
"dependencies": {
"adm-zip": "^0.4.7",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"file-saver": "^1.3.3",
"glob": "^7.1.1",
"ioredis": "^3.2.1",
"isbinaryfile": "^3.0.2",
"jsforce": "Krisa/jsforce",
"jsonwebtoken": "^8.1.0",
"jszip": "^3.1.4",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-conditional-get": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-etag": "^3.0.0",
"koa-logger": "^3.1.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-session2": "2.2.5",
"koa-socket": "^4.4.0",
"koa-static": "^4.0.1",
"koa-views": "^6.1.1",
"mongoose": "^4.12.4",
"mongoose-beautiful-unique-validation": "^7.0.0",
"needle": "^1.6.0",
"needle-retries": "^1.0.0",
"nodemon": "^1.12.1",
"passport-local": "^1.0.0",
"rimraf": "^2.6.2",
"salesforce-oauth2": "^0.1.8",
"sendgrid": "5.2.3",
"slug": "^0.9.1",
"socket.io-client": "^2.0.4",
"xml-escape": "^1.1.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@angular/animations": "4.4.6",
"@angular/cdk": "^2.0.0-beta.12",
"@angular/cli": "^1.4.9",
"@angular/common": "4.4.6",
"@angular/compiler": "4.4.6",
"@angular/compiler-cli": "4.4.6",
"@angular/core": "4.4.6",
"@angular/forms": "4.4.6",
"@angular/http": "4.4.6",
"@angular/material": "2.0.0-beta.12",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@angular/platform-server": "4.4.6",
"@angular/router": "4.4.6",
"@angularclass/hmr": "2.1.3",
"@types/hammerjs": "^2.0.34",
"@types/node": "7.0.21",
"@types/socket.io-client": "^1.4.31",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"chai": "^3.5.0",
"codelyzer": "3.2.2",
"core-js": "^2.4.1",
"diff": "3.4.0",
"es7-reflect-metadata": "^1.6.0",
"eslint": "^4.9.0",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-babel": "^4.0.1",
"imports-loader": "^0.7.1",
"jquery": "^2.2.4",
"jquery-ui": "^1.12.1",
"jquery.fancytree": "^2.22.0",
"parse5": "3.0.2",
"rxjs": "5.0.1",
"ts-helpers": "1.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typescript": "2.4.0",
"zone.js": "0.8.12"
}
}