-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"private": true,
"name": "headline-news",
"version": "1.0.0",
"description": "Displays news articles",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node --presets=env",
"dev": "cross-env NODE_ENV=development concurrently --kill-others --kill-others-on-fail --names \"server,client\" \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon --watch server.js --watch dist ./server.js",
"dev:client": "nodemon -e js,mjs,json,vue --watch src --exec npm run build",
"start": "cross-env NODE_ENV=production node server",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --hide-modules"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"cross-env": "^5.2.1",
"express": "^4.16.2",
"ilc-adapter-vue": "^1.9.2",
"ilc-sdk": "^3.0.1",
"lru-cache": "^4.1.1",
"single-spa-vue": "^1.8.2",
"vue": "^2.6.12",
"vue-meta": "^2.3.3",
"vue-router": "^3.3.0",
"vue-server-renderer": "^2.6.12",
"vuex": "^3.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"concurrently": "^4.1.1",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.3",
"rimraf": "^2.6.2",
"url-loader": "^0.6.2",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.6.0"
}
}