forked from bcgov/digital_marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
172 lines (172 loc) · 6.68 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "bcgov-digital-marketplace",
"version": "1.8.4",
"description": "Digital Marketplace",
"main": "index.js",
"scripts": {
"cypress:run": "./node_modules/.bin/cypress run",
"cypress:open": "./node_modules/.bin/cypress open",
"build": "npm run back-end:build && npm run front-end:build",
"start": "npm run back-end:start",
"front-end:lint": "npx tslint -c tslint.json src/front-end/*.ts src/front-end/**/*.ts && echo Lint Successful\n",
"front-end:typecheck": "npx tsc --project src/front-end/typescript --noEmit && echo Typecheck Successful\n",
"front-end:test": "jest",
"front-end:build": "npx grunt front-end-build",
"front-end:watch": "npx grunt front-end-watch-development",
"front-end:typedoc": "npx typedoc --name 'Digital Marketplace Front-End' --tsconfig src/front-end/typescript/tsconfig.json --out typedoc/front-end src/front-end/typescript",
"back-end:lint": "npx tslint -c tslint.json src/back-end/*.ts src/back-end/**/*.ts && echo Lint Successful\n",
"back-end:typecheck": "npx tsc --project src/back-end --noEmit && echo Typecheck Successful\n",
"back-end:test": "node tests/back-end/index.js",
"back-end:start": "node build/back-end/back-end/start.js",
"back-end:build": "npx grunt back-end-build",
"back-end:watch": "npx nodemon --watch ./src/back-end --watch ./src/shared --ext ts,tsx,js,json,yaml --exec \"npx grunt back-end-build-development && npm run back-end:start\"",
"back-end:typedoc": "npx typedoc --name 'Digital Marketplace Back-End' --tsconfig src/back-end/tsconfig.json --out typedoc/back-end src/back-end",
"shared:typedoc": "npx typedoc --name 'Digital Marketplace Shared' --tsconfig src/shared/tsconfig.json --out typedoc/shared src/shared",
"migrations:helper": "npx ts-node --require tsconfig-paths/register --project src/migrations/tsconfig.json \"$(npm bin)/knex\" --cwd src/migrations",
"migrations:create": "npm run migrations:helper -- migrate:make -x ts --stub ./stub.ts",
"migrations:latest": "npm run migrations:helper -- migrate:latest",
"migrations:rollback": "npm run migrations:helper -- migrate:rollback",
"migrations:up": "npm run migrations:helper -- migrate:up",
"migrations:down": "npm run migrations:helper -- migrate:down",
"scripts:run": "npx grunt scripts-build && node build/scripts/scripts/start.js",
"typedoc:build": "npm run back-end:typedoc; npm run front-end:typedoc; npm run shared:typedoc",
"typedoc:start": "npx serve --config typedoc/serve.json typedoc",
"docs:readme-toc": "npx markdown-toc --maxdepth 3 -i README.md",
"docs:licenses": "npx license-checker | grep -v 'path:' | grep -v 'licenseFile:' > docs/OPEN_SOURCE_LICENSES.txt",
"docs:db": "npx pg-doc --out docs/DATABASE.md --connection"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Real Folk Inc.",
"license": "Apache-2.0",
"homepage": "",
"engines": {
"node": ">=16.13.1"
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@keycloak/keycloak-admin-client": "^15.0.2",
"@testing-library/cypress": "^8.0.2",
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/html-to-text": "^8.0.1",
"@types/jest": "^27.4.0",
"@types/keycloak-connect": "^7.0.0",
"@types/lodash": "^4.14.178",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^9.0.0",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"@types/multiparty": "^0.0.33",
"@types/node": "^17.0.8",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-select": "^5.0.1",
"@types/reactstrap": "^8.7.2",
"@types/sha.js": "^2.4.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/wordpress__wordcount": "^2.4.2",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@wordpress/wordcount": "^2.7.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"bowser": "^2.9.0",
"chalk": "^2.4.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"find-up": "^5.0.0",
"html-to-text": "^5.1.1",
"immutable": "^4.0.0-rc.12",
"jest-diff": "^25.5.0",
"jimp": "^0.16.0",
"keycloak-connect": "^8.0.0",
"knex": "0.19.5",
"lodash": "^4.17.21",
"mime-types": "^2.1.22",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"multiparty": "^4.2.1",
"nodemailer": "^6.6.1",
"openid-client": "^3.15.9",
"pg": "8.7.x",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sha.js": "^2.4.11",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"ts-jest": "^27.1.2",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.8.0",
"tslint": "^6.1.3",
"typescript": "^3.8.2",
"uuid": "^3.3.3",
"yargs": "^16.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.0",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/react": "^12.1.2",
"autoprefixer": "^9.4.4",
"axios": "^0.24.0",
"babel-jest": "^27.3.1",
"bootstrap": "^4.6.1",
"cssnano": "^4.1.10",
"cypress": "^9.2.0",
"cypress-file-upload": "^5.0.8",
"envify": "^4.1.0",
"eslint": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-react": "^7.27.1",
"grunt": "^1.4.1",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.5.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-htmlmin": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ejs": "^1.0.0",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.0.2",
"grunt-shell": "^3.0.1",
"grunt-terser": "^0.1.0",
"is-relative-url": "^3.0.0",
"jest": "^27.3.1",
"jquery": "^3.5.1",
"license-checker": "^25.0.1",
"load-grunt-tasks": "^4.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^9.1.3",
"moment-timezone": "^0.5.23",
"node-sass": "7.0.x",
"nodemon": "^2.0.4",
"path-to-regexp": "^6.1.0",
"pathmodify": "^0.5.0",
"pg-doc": "^0.1.1",
"react-markdown": "^4.2.2",
"react-select": "^3.0.8",
"reactstrap": "^8.4.0",
"require-dir": "^1.2.0",
"serve": "^11.3.2",
"typedoc": "^0.22.10"
}
}