-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "movieapi",
"version": "1.0.0",
"description": "Web page made for practicing REST API",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"dev": "npx webpack --config webpack.config.dev.js",
"watch": "npx webpack --watch --config webpack.config.dev.js",
"start": "webpack serve --config webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RodoPZ/MovieAPI.git"
},
"keywords": [
"api",
"javascript",
"movies"
],
"author": "Rodopz",
"license": "MIT",
"bugs": {
"url": "https://github.com/RodoPZ/MovieAPI/issues"
},
"homepage": "https://github.com/RodoPZ/MovieAPI#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^9.0.0",
"buffer": "^6.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.17",
"process": "^0.11.10",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@netlify/functions": "^1.4.0",
"@types/node": "^14.18.36",
"axios": "^1.2.6"
}
}