-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 877 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 877 Bytes
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
{
"name": "cleo",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"build": "webpack build",
"start:dev": "nodemon ./src/index.js",
"build:dev": "webpack build -w",
"format": "prettier . -w"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"axios": "^0.24.0",
"bulma": "^0.9.3",
"express": "^4.17.1",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"multer": "^1.4.3",
"nanoid": "^3.1.30",
"node-stl": "^0.7.2",
"pug": "^3.0.2",
"vue": "^3.2.21",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.17.1",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"vue-loader": "^16.8.3",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
}
}