-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 3.41 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
{
"name": "vue-ssr",
"version": "0.10.1",
"description": "",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Mostafa Rostam Dokht Effati",
"email": "[email protected]"
},
"scripts": {
"serve": "cross-env NODE_ENV=development nodemon server",
"bs": "npm run build && npm run start",
"start": "cross-env NODE_ENV=production node server",
"build": "rimraf dist && npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --mode=production --config builder/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --mode=production --config builder/webpack.server.config.js --progress --hide-modules",
"postinstall": "npm run build",
"test": "NODE_ENV=test mocha",
"lint": "eslint ./src",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress builder docs"
},
"dependencies": {
"chokidar": "^3.4.0",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"i18n": "^0.11.1",
"lru-cache": "^5.1.1",
"memory-fs": "^0.5.0",
"nodemon": "^2.0.4",
"register-service-worker": "^1.7.1",
"restyl": "^0.3.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.5",
"vue-i18n": "^8.20.0",
"vue-property-decorator": "^9.0.0",
"vue-router": "^3.3.4",
"vue-server-renderer": "^2.6.11",
"vuex": "^3.4.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@vue/cli-plugin-pwa": "^4.5.3",
"@vue/cli-plugin-typescript": "^4.5.2",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.0-beta.2",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob-all": "^3.2.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"purgecss-webpack-plugin": "^2.3.0",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpackbar": "^4.0.0"
}
}