forked from 3daddict/stl-estimator-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "stl-estimator-nodejs",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/3daddict/stl-estimator-nodejs.git",
"author": "HacktoberFest2019",
"license": "MIT",
"scripts": {
"build:sass": "node-sass public/css/styles.scss public/css/styles.css",
"start": "node src/app.js",
"dev": "nodemon src/app.js -e js.hbs",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"dotenv": "^8.1.0",
"express": "^4.17.1",
"materialize-css": "^1.0.0-rc.2",
"node-sass": "^4.12.0",
"request": "^2.88.0",
"vanilla-router": "^1.2.7"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.3",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}