-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.75 KB
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
{
"name": "javascript-capstone-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack serve --open",
"test": "jest ",
"dev": "webpack --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yemisirach/JavaScript-capstone-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yemisirach/JavaScript-capstone-project/issues"
},
"homepage": "https://github.com/Yemisirach/JavaScript-capstone-project#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.4.2",
"css-loader": "^6.7.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"esquery": "1.4.0",
"hint": "^7.1.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.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",
"ts-jest": "^29.0.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"jsdom": "^21.1.0",
"lodash": "^4.17.21"
}
}