-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
74
{
"name": "to-do-list",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"deploy": "gh-pages -d dist",
"dev": "webpack serve",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuisDavidRodriguez/To-do-list.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LuisDavidRodriguez/To-do-list/issues"
},
"jest": {
"modulePaths": [
"/shared/vendor/modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js",
"^config$": "<rootDir>/configs/app-config.js"
}
},
"homepage": "https://LuisDavidRodriguez.github.io/To-do-list",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"hint": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"gh-pages": "^4.0.0",
"sass": "^1.54.3"
}
}