-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
{
"name": "movie-catalogue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"serve": "http-server dist",
"test": "karma start"
},
"keywords": [],
"author": "your_name <your_email@mail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"babel-loader": "9.1.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.2",
"eslint": "8.28.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-codeceptjs": "1.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jasmine": "4.1.3",
"html-webpack-plugin": "5.5.0",
"http-server": "14.1.1",
"jasmine-ajax": "4.0.0",
"jasmine-core": "4.2.0",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.1",
"karma-eslint": "2.2.0",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "4.0.2",
"karma-sourcemap-loader": "0.3.8",
"karma-webpack": "5.0.0",
"style-loader": "3.3.1",
"webpack": "5.75.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0",
"whatwg-fetch": "3.6.2"
},
"dependencies": {
"idb": "7.0.1",
"regenerator-runtime": "0.13.9"
}
}