-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.31 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": "name",
"version": "1.0.0",
"description": "description",
"main": "index.js",
"scripts": {
"build": "webpack --mode=development",
"start": "npm run build && webpack-dev-server --mode=development",
"lint": "eslint src --ext .js",
"test": "jest",
"test:coverage": "jest -coverage",
"deploy": "npm run build && gh-pages -d dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.18.0",
"eslint-webpack-plugin": "^2.7.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"style-loader": "^1.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@types/jest": "^29.5.8",
"bootstrap": "^5.2.3",
"compendium-js": "^0.0.32",
"dotenv-webpack": "^8.0.1",
"parts-of-speech": "^0.3.0",
"path-browserify": "^1.0.1",
"thesaurus-js": "^1.0.5"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html",
"text"
]
}
}