-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.66 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.66 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
113
{
"name": "online-judge-mean",
"version": "1.0.0",
"author": {
"name": "Rong Zhuang",
"email": "jojozhuang@gmail.com"
},
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node ./server/server",
"ng": "ng",
"build": "ng build --configuration production",
"test": "echo \"Error: no test specified\"",
"test-dev": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"client": "ng serve",
"client-prod": "ng serve --configuration production",
"client-aot": "ng serve -aot",
"server-local": "NODE_ENV=local nodemon ./server/server --ignore ./server/judgingengine/temp",
"server-local-debug": "NODE_ENV=local nodemon DEBUG=* ./server/server --ignore ./server/judgingengine/temp",
"server-dev": "NODE_ENV=dev nodemon ./server/server --ignore ./server/judgingengine/temp",
"server-stage": "NODE_ENV=stage nodemon ./server/server --ignore ./server/judgingengine/temp",
"local": "concurrently \"npm run client\" \"npm run server-local \"",
"local-debug": "concurrently \"npm run client\" \"npm run server-local-debug \"",
"dev": "concurrently \"npm run client\" \"npm run server-dev \"",
"stage": "concurrently \"npm run client\" \"npm run server-stage \"",
"prod": "npm run client-prod",
"build-nas": "ng build --configuration nas",
"start-nas": "ng serve --configuration nas"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.1.2",
"@angular/cdk": "^6.4.7",
"@angular/cli": "^12.1.2",
"@angular/common": "^12.1.2",
"@angular/compiler": "^12.1.2",
"@angular/core": "^12.1.2",
"@angular/forms": "^12.1.2",
"@angular/material": "^6.4.7",
"@angular/platform-browser": "^12.1.2",
"@angular/platform-browser-dynamic": "^12.1.2",
"@angular/router": "^12.1.2",
"@kolkov/angular-editor": "^1.2.0",
"app-root-path": "^2.2.1",
"body-parser": "^1.19.0",
"bootstrap": "^3.4.1",
"clf-date": "^0.1.0",
"concurrently": "^3.6.1",
"cookie-parser": "^1.4.4",
"core-js": "^2.6.9",
"cors": "^2.8.5",
"csv-express": "^1.2.2",
"eslint": "^5.16.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.1",
"fast-csv": "^4.3.6",
"font-awesome": "^4.7.0",
"fstream": "1.0.12",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"katex": "^0.13.11",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"monaco-editor": "^0.26.1",
"mongoose": "^5.5.11",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"ncp": "^2.0.0",
"ngx-bootstrap": "^6.2.0",
"ngx-monaco-editor": "^12.0.0",
"ngx-progressbar": "^6.1.1",
"nodemon": "^2.0.12",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.5.2",
"serve-favicon": "^2.5.0",
"tslib": "^2.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.1.2",
"@angular/compiler-cli": "^12.1.2",
"@angular/language-service": "^12.1.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~4.1.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5",
"tar": "2.2.2",
"js-yaml": "3.13.1"
},
"engines": {
"node": "14.16.1",
"npm": "6.14.12"
}
}