This repository was archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.83 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.83 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
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
{
"name": "shipcloud-js",
"private": true,
"version": "1.0.3",
"description": "ShipCloud API for JS",
"main": "index.js",
"scripts": {
"rimraf": "rimraf",
"tslint": "tslint",
"typedoc": "typedoc",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server -- --client-log-level none",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist",
"clean:dist": "npm run rimraf -- dist",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:client": "npm run build:dev -- --watch",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "npm run build:dev",
"build:client": "webpack --config config/webpack.client.js --progress --profile",
"prebuild:client": "npm run clean:dist",
"prebuild:dev": "npm run clean:dist",
"api:dev": "webpack-dev-server --config config/webpack.api.dev.js --progress --profile --watch --content-base src/",
"api:dev:hot": "npm run api:dev -- --inline --hot",
"build:dev": "webpack --config config/webpack.api.dev.js --progress --profile",
"prebuild:prod": "npm run clean:dist",
"build:prod": "webpack --config config/webpack.api.prod.js --progress --profile --bail",
"server:prod": "http-server dist --cors",
"dashboard": "webpack-dashboard -- npm run api:dev:hot",
"lint": "npm run tslint \"src/**/*.ts\"",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"start": "npm run build:prod",
"start:hmr": "npm run api:dev:hot",
"start:client": "ts-node index.ts",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "Harris Brakmic",
"contributors": [
{
"name": "André Cedik",
"url": "https://github.com/andrecedik"
}
],
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.52",
"@types/jquery": "^2.0.46",
"@types/lodash": "^4.14.66",
"@types/node": "^7.0.31",
"@types/source-map": "^0.5.0",
"@types/uglify-js": "^2.6.29",
"@types/webpack": "^2.2.16",
"assets-webpack-plugin": "^3.5.1",
"awesome-typescript-loader": "^3.1.3",
"bootstrap-loader": "^2.1.0",
"circular-json": "^0.3.1",
"codelyzer": "^3.0.1",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"diff": "^3.2.0",
"domready": "^1.0.8",
"exports-loader": "^0.6.4",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"font-awesome-loader": "^1.0.2",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"imports-loader": "^0.7.1",
"jquery": "^3.2.1",
"json-loader": "^0.5.4",
"moment": "^2.18.1",
"node-fetch": "^1.7.1",
"node-loader": "^0.6.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"script-ext-html-webpack-plugin": "^1.8.1",
"source-map-loader": "^0.2.1",
"string-replace-loader": "^1.2.0",
"style-loader": "^0.18.2",
"to-string-loader": "^1.1.5",
"ts-helpers": "^1.1.2",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"tslint-loader": "^3.5.3",
"typedoc": "^0.7.1",
"typescript": "^2.3.4",
"typescript-collections": "^1.2.3",
"webpack": "^2.6.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.5",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"core-js": "^2.4.1",
"es6-promise": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"js-base": "0.0.1-beta",
"lodash": "^4.17.4",
"rxjs": "^5.4.1"
}
}