This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.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
{
"name": "easel-lite",
"description": "",
"version": "1.0.0",
"main": "lib/server",
"scripts": {
"all:build": "npm run server:build && npm run client:build",
"server:start": "node lib/server",
"server:watch": "tsc -w -p src/server",
"server:build": "tsc -p src/server",
"server:dev": "nodemon lib/server",
"client:build": "ng build --base-href /el/",
"client:watch": "ng build --base-href /el/ --watch",
"client:dev": "ng serve --base-href /e/ --open",
"initdb": "node lib/server/initdb",
"heroku-postbuild": "npm run server:build && npm run initdb && npm run client:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShepherdJerred-homework/easel-lite.git"
},
"author": "Jerred Shepherd",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ShepherdJerred-homework/easel-lite/issues"
},
"homepage": "https://github.com/ShepherdJerred-homework/easel-lite#readme",
"dependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@types/basic-auth": "^1.1.2",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/mongoose": "^5.0.9",
"@types/morgan": "^1.7.35",
"@types/node": "^8.10.9",
"@types/session-file-store": "^1.2.0",
"basic-auth": "^2.0.0",
"bulma": "^0.7.1",
"core-js": "^2.4.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.0.14",
"morgan": "^1.9.0",
"rxjs": "^5.5.6",
"session-file-store": "^1.2.0",
"tslib": "^1.9.0",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular/cli": "~1.7.3",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"nodemon": "^1.17.3",
"ts-node": "~4.1.0",
"tslint": "^5.9.1",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^2.6.2"
}
}