-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.51 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.51 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
{
"name": "splearn",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "concurrently \"mongod\" \"ng build -w\" \"nodemon src/server/server.js\"",
"debug": "concurrently \"mongod\" \"ng build -w\" \"devtool src/server/server.js\"",
"prod": "concurrently \"mongod\" \"ng build -prod\" \"node src/server/server.js\"",
"lint": "tslint \"src/**/*.ts\" --project src/tsconfig.json --type-check && tslint \"e2e/**/*.ts\" --project e2e/tsconfig.json --type-check",
"deploy": "echo \"Are you sure you are on the 'deploy' branch (y/n)\" && read input_variable && if echo \"$input_variable\" | grep -iq \"^n\"; then return; fi && ng build -prod -aot && git add dist -f && git commit -am \"Prepairing for deployment, add dist folder\" && git push live deploy:master && git rm --cached dist -r && git commit -am \"Finishing deployment, remove dist folder\"",
"test": "ng test",
"test:server": "mocha",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/animations": "4.1.0",
"@angular/common": "4.1.0",
"@angular/compiler": "4.1.0",
"@angular/core": "4.1.0",
"@angular/forms": "4.1.0",
"@angular/http": "4.1.0",
"@angular/platform-browser": "4.1.0",
"@angular/platform-browser-dynamic": "4.1.0",
"@angular/router": "4.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"concurrently": "^3.4.0",
"core-js": "^2.4.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"helmet": "^3.5.0",
"jsonwebtoken": "^7.4.0",
"moment": "^2.18.1",
"mongoose": "^4.9.0",
"mongoose-unique-validator": "^1.0.5",
"morgan": "^1.8.1",
"purecss": "^0.6.2",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.1",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.0.1",
"@angular/compiler-cli": "4.1.0",
"@types/jasmine": "2.5.38",
"@types/moment": "^2.13.0",
"@types/node": "^6.0.42",
"codelyzer": "~2.0.0-beta.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"protractor": "~4.0.13",
"ts-node": "1.2.1",
"tslint": "^4.3.0",
"typescript": "^2.1.5"
},
"standard": {
"ignore": [
"/node_modules"
]
}
}