-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "to-do-list",
"version": "1.0.0",
"description": "",
"private": true,
"dependencies": {
"gh-pages": "^3.2.3",
"hint": "^6.1.4",
"jsdom": "^16.6.0",
"lodash": "^4.17.21",
"stylelint-csstree-validator": "^1.9.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"babel-eslint": "^10.1.0",
"css-loader": "^6.2.0",
"csv-loader": "^3.0.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"jest-localstorage-mock": "^2.4.14",
"style-loader": "^3.1.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-dev-server": "^3.11.2",
"xml-loader": "^1.2.1"
},
"scripts": {
"watch": "webpack --watch",
"start": "webpack serve --open",
"server": "node server.js",
"build": "webpack",
"deploy": "gh-pages -d dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bishoy-Samwel/to-do-list.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bishoy-Samwel/to-do-list/issues"
},
"homepage": "https://github.com/Bishoy-Samwel/to-do-list#readme",
"jest": {
"resetMocks": false,
"setupFiles": [
"jest-localstorage-mock"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}