-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.09 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
{
"name": "killiangrant.com",
"version": "1.0.0",
"license": "Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)",
"description": "",
"scripts": {
"dev": "webpack serve --mode=development --config=webpack.config.ts",
"build": "rm -rf dist/* && webpack --mode=production --config=webpack.config.ts",
"lint": "eslint --fix 'src/**/*.{ts,js,json,vue}'",
"serve": "nodemon --exec 'node --loader ts-node/esm' server.ts"
},
"author": "",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"body-parser": "^1.19.0",
"contentful": "^8.1.6",
"core-js": "^3.8.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http": "^0.0.1-security",
"https": "^1.0.0",
"marked": "^1.2.7",
"regenerator-runtime": "^0.13.7",
"vue": "^3.0.5",
"vue-router": "^4.0.2",
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/marked": "^1.2.1",
"@types/random": "^2.1.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.3.0",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.20.0",
"eslint-plugin-vue": "^7.6.0",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.9",
"nodemon": "^2.0.6",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.0.5",
"vue-loader": "^16.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.5.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"nodemonConfig": {
"ignore": [
"src/*",
"dist/*"
]
}
}