-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 846 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": "forkify",
"version": "1.0.0",
"description": "forkify project",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open"
},
"author": "Tanvi Roy",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"html-webpack-plugin": "^4.3.0",
"webpack": "^4.42.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"axios": "^0.19.2",
"babel-polyfill": "^6.26.0",
"core-js": "^3.6.5",
"fractional": "^1.0.0",
"jquery": "^3.5.0",
"regenerator-runtime": "^0.13.5",
"uniqid": "^5.2.0"
}
}