-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "todo",
"version": "1.0.0",
"description": "todo-list-app",
"private": "true",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"build": "webpack",
"start": "webpack serve --open",
"watch": "webpack --watch",
"server": "node server.js",
"lint": "npm run lint:html; npm run lint:js; npm run lint:css;",
"lint:html": "npx hint .",
"lint:js": "npx eslint .",
"lint:css": "npx stylelint '**/*.{css,scss}'"
},
"repository": {
"type": "git",
"url": "git@github.com:mahabubx7/todo-list.git"
},
"engines": {
"node": "16.x"
},
"author": "Mahabub <mahabubx7@gmail.com>",
"license": "MIT",
"dependencies": {
"webpack": "^5.76.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"babel-eslint": "^10.1.0",
"css-loader": "^6.7.3",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"hint": "^7.1.5",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"style-loader": "^3.3.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
}