-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 3.01 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
{
"name": "axon",
"version": "0.1.0",
"description": "Dashboard for delivering neuroscience experiments on the web for the Neurodegeneration Research Laboratory at The Neuro",
"main": "src/main.ts",
"dependencies": {
"@angular/animations": "^14.2.5",
"@angular/cdk": "^14.2.4",
"@angular/common": "^14.2.5",
"@angular/compiler": "^14.2.5",
"@angular/core": "^14.2.5",
"@angular/forms": "^14.2.5",
"@angular/material": "^14.2.4",
"@angular/platform-browser": "^14.2.5",
"@angular/platform-browser-dynamic": "^14.2.5",
"@angular/router": "^14.2.5",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"classlist.js": "^1.1.20150312",
"file-saver": "^2.0.2",
"jszip": "^3.10.1",
"jwt-decode": "^3.0.0-beta.2",
"ng-zorro-antd": "^14.0.0",
"rxjs": "~6.6.2",
"tslib": "^2.0.0",
"web-animations-js": "^2.3.2",
"xlsx": "^0.17.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-builders/jest": "^13.0.3",
"@angular-devkit/build-angular": "^14.2.5",
"@angular/cli": "^14.2.5",
"@angular/compiler-cli": "^14.2.5",
"@angular/language-service": "^14.2.5",
"@sentry/angular": "^8.34.0",
"@sentry/cli": "^2.17.5",
"@types/file-saver": "^2.0.1",
"@types/jest": "^28.1.8",
"@types/luxon": "^1.25.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"glob": "^7.2.0",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.2",
"luxon": "^1.28.1",
"prettier": "^2.3.0",
"protractor": "~7.0.0",
"ts-node": "~8.9.0",
"tslint": "~6.1.0",
"typescript": "^4.6.4"
},
"scripts": {
"ng": "ng",
"start-proxy": "ng serve --configuration development --proxy-config proxy.conf.json",
"start": "ng serve -o",
"build": "ng build --configuration production --aot",
"build-dev": "ng build --configuration development --aot",
"test": "ng test",
"lint": "ng lint",
"deploy": "cd dist && scp -r . [email protected]:/home/nlee30",
"build-deploy": "npm run build && npm run sentry:generate-sourcemaps && npm run sentry:upload-sourcemaps && npm run remove-maps && npm run deploy",
"lint-fix": "ng lint --fix=true",
"sentry:generate-sourcemaps": "sentry-cli sourcemaps inject ./dist",
"sentry:upload-sourcemaps": "sentry-cli sourcemaps upload ./dist",
"remove-maps": "rm ./dist/*.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cognitive-neuroscience/axon.git"
},
"keywords": [
"neuroscience"
],
"author": "Nicholas Lee (nicoalee.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cognitive-neuroscience/axon/issues"
},
"homepage": "https://github.com/cognitive-neuroscience/axon#readme"
}