-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "customers-app",
"version": "1.0.0",
"description": "master detail customers app with invoices",
"main": "server.js",
"scripts": {
"compile": "tsc",
"server": "ts-node ./server",
"start": "webpack-dev-server --mode=development --config ./client/webpack.config.js",
"build": "webpack --mode=production --config ./client/webpack.config.js && webpack --mode=production --config ./server/webpack.config.js",
"test": "mocha -r ts-node/register server/tests/**.spec.ts --timeout 60000 --exit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/brianignacio5/customers-app.git"
},
"keywords": [
"customers",
"invoices"
],
"author": "Brian Ignacio",
"license": "ISC",
"bugs": {
"url": "https://github.com/brianignacio5/customers-app/issues"
},
"homepage": "https://github.com/brianignacio5/customers-app#readme",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^7.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"buefy": "^0.9.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.3.0",
"mocha": "^8.2.1",
"node-sass": "^4.14.1",
"sass-loader": "^10.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"url-loader": "^4.1.1",
"vue-class-component": "^7.2.3",
"vue-loader": "^15.9.2",
"vue-property-decorator": "^8.5.0",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.4.0",
"vuex-class": "^0.3.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.23",
"axios": "^0.21.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.4",
"mongodb-client-encryption": "^1.0.1",
"mongoose": "^5.9.18",
"vue": "^2.6.11",
"vue-router": "^3.4.9"
}
}