-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
37
38
39
{
"name": "jonas-forkify-app",
"version": "1.0.0",
"description": "Jonas Schmedtmann JavaScript Course",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --quiet --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MitHipster/jonas-forkify-app.git"
},
"author": "Jonas Schmedtmann",
"license": "ISC",
"bugs": {
"url": "https://github.com/MitHipster/jonas-forkify-app/issues"
},
"homepage": "https://github.com/MitHipster/jonas-forkify-app#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^5.6.1",
"html-webpack-plugin": "^3.0.7",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"dotenv": "^6.0.0",
"fraction.js": "^4.0.11",
"nanoid": "^2.0.0"
}
}