-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 977 Bytes
/
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
{
"name": "masamo-text-editor",
"version": "1.0.0",
"description": "Simple javascript Text Editor from Masamo",
"main": "server.js",
"scripts": {
"dev": "concurrently \"npm run webpack\" \"npm run sass\" \"npm run server\"",
"server": "nodemon server.js",
"webpack": "webpack-cli -w --config ./webpack.config.js --mode development --env=development",
"sass": "sass -w sass/main.scss dist/css/style.css"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.1",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"concurrently": "^8.2.1",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"sass": "^1.66.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}