-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.83 KB
/
package.json
File metadata and controls
113 lines (113 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
113
{
"name": "ngnode-fullstack",
"version": "0.0.1",
"license": "MIT",
"author": "Asad Sahi",
"homepage": "http://ngnode-fullstack.herokuapp.com",
"description": "Node and Angular fullstack single page application with relational databases support",
"engines": {
"node": ">=8.0",
"npm": ">=5.0"
},
"scripts": {
"dev": "concurrently \"npm run client\" nodemon",
"client": "ng serve --open",
"build:prod": "ng build --project=client --prod",
"serve:prod": "cross-env NODE_ENV=production node server.js",
"build:ssr": "concurrently \"ng build --watch --project=client\" \"ng build --project=ssr --watch\"",
"serve:ssr": "nodemon -- --enable-ssr",
"serve:prod:ssr": "cross-env NODE_ENV=production node server.js --enable-ssr",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json",
"analyze": "ng build --prod --stats-json && webpack-bundle-analyzer dist/client/stats.json",
"deploy:heroku": "heroku config:set NPM_CONFIG_PRODUCTION=false -a ngnode-fullstack && git push heroku master -f && heroku open",
"heroku-postbuild": "npm run build:prod && npm run db",
"db": "sequelize db:migrate && sequelize db:seed:all",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"deve2e": "concurrently client \"cross-env NODE_ENV=development node ./server.js\"",
"e2e": "testcafe-live chrome e2e/**/*.e2e-spec.ts",
"e2e:ci": "testcafe all e2e/**/*.e2e-spec.ts --project=client \"npm run dev\" --app-init-delay 4000"
},
"private": true,
"dependencies": {
"@angular/animations": "10.0.7",
"@angular/common": "10.0.7",
"@angular/compiler": "10.0.7",
"@angular/core": "10.0.7",
"@angular/forms": "10.0.7",
"@angular/localize": "^10.0.7",
"@angular/platform-browser": "10.0.7",
"@angular/platform-browser-dynamic": "10.0.7",
"@angular/platform-server": "10.0.7",
"@angular/pwa": "0.1000.5",
"@angular/router": "10.0.7",
"@angular/service-worker": "10.0.7",
"@ng-bootstrap/ng-bootstrap": "7.0.0",
"@swimlane/ngx-datatable": "17.1.0",
"acl": "0.4.11",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.19.0",
"bootstrap": "4.5.1",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"date-fns": "2.15.0",
"express": "4.17.1",
"express-jwt": "6.0.0",
"font-awesome": "4.7.0",
"globby": "11.0.1",
"hbs": "4.1.1",
"helmet": "4.0.0",
"jwks-rsa": "1.8.1",
"lodash": "4.17.19",
"morgan": "1.10.0",
"multer": "1.4.2",
"nodemailer": "6.4.11",
"oidc-client": "1.10.1",
"preboot": "7.0.0",
"rxjs": "6.6.2",
"sequelize": "6.3.4",
"sqlite3": "5.0.0",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1000.5",
"@angular/cli": "10.0.5",
"@angular/compiler-cli": "10.0.7",
"@angular/language-service": "10.0.7",
"@compodoc/compodoc": "1.1.11",
"@types/express": "4.17.7",
"@types/jest": "^26.0.8",
"@types/node": "14.0.27",
"codelyzer": "6.0.0",
"concurrently": "5.2.0",
"cross-env": "7.0.2",
"jest": "26.2.2",
"jest-preset-angular": "8.2.1",
"nodemon": "2.0.4",
"rimraf": "3.0.2",
"sequelize-cli": "6.2.0",
"testcafe": "1.8.8",
"testcafe-angular-selectors": "0.4.1",
"testcafe-live": "0.1.4",
"ts-loader": "8.0.2",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"typescript": "~3.9.7",
"webpack-bundle-analyzer": "3.8.0"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png)$": "<rootDir>/__mocks__/image.js",
"@app/(.*)": "<rootDir>/src/app/$1",
"assets/(.*)": "<rootDir>/src/assets/$1",
"environments/(.*)": "<rootDir>/src/environments/$1"
}
}
}