-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
49
50
51
52
53
54
{
"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 --port 9000",
"test": "karma start",
"e2e": "codeceptjs run --steps"
},
"keywords": [],
"author": "your_name <your_email@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"codeceptjs": "^3.3.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.18.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",
"puppeteer": "^14.4.1",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0",
"whatwg-fetch": "^3.6.2",
"workbox-webpack-plugin": "^6.5.3"
},
"dependencies": {
"idb": "^7.0.1",
"regenerator-runtime": "^0.13.9",
"workbox-window": "^6.5.3"
}
}