-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
55
56
{
"name": "webpack_to-do-list_exercise",
"version": "1.0.0",
"description": "The To-Do List Exercise",
"main": "index.js",
"private": true,
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/operations.js",
"\\.(css|sass)$": "<rootDir>/src/index.js"
}
},
"scripts": {
"watch": "webpack --watch",
"start": "webpack serve --open",
"server": "node server.js",
"deploy": "gh-pages -d dist",
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsimKhan2019/WebPack_To-Do-List_Exercise.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AsimKhan2019/WebPack_To-Do-List_Exercise/issues"
},
"homepage": "https://github.com/AsimKhan2019/WebPack_To-Do-List_Exercise#readme",
"dependencies": {
"gh-pages": "^4.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.2",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.3",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^4.9.3"
}
}