-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "template-starter-kit--jsfirst",
"private": true,
"version": "1.0.0",
"scripts": {
"build:watch": "webpack --config webpack.config.js --mode development --watch",
"build": "webpack --config webpack.config.js --mode production",
"upload:watch": "node ./sync.js watch",
"upload": "node ./sync.js all",
"publish": "npm-run-all -s build upload",
"start": "npm-run-all -p build:watch upload:watch"
},
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^2.0.2",
"bulma": "^0.9.2",
"chokidar": "^3.5.1",
"css-loader": "^4.3.0",
"mini-css-extract-plugin": "^0.11.3",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.15",
"sass-loader": "^10.1.1",
"strip-bom": "^4.0.0",
"terser-webpack-plugin": "^4.2.3",
"vue": "^2.6.12",
"vue-intersect": "^1.1.6",
"vue-loader": "^15.9.6",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.6.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}