-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 844 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 844 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
{
"name": "starter",
"version": "1.0.0",
"description": "udemy course js",
"main": "index.js",
"scripts": {
"test": "webpack --mode development",
"build": "webpack --mode production",
"start": "node server.js",
"start:dev": "webpack-dev-server --mode development --open"
},
"author": "Fernando Cutire",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"html-webpack-plugin": "^4.3.0",
"install": "^0.13.0",
"npm": "^6.14.5",
"regenerator-runtime": "^0.13.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.19.2",
"express": "^4.17.1",
"fractional": "^1.0.0",
"uniqid": "^5.2.0"
}
}