-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "modern-js-boilerplate",
"version": "1.2.0",
"description": "A simple js module boilerplate",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist/*",
"dev": "webpack-dev-server --entry ./src/main.js --output-filename ./dist/index.js --mode development",
"build": "webpack --mode production",
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"lint": "eslint --cache --fix src",
"prettier": "npm run lint && prettier --write .",
"prepare": "husky install",
"prebuild": "npm run test && npm run clean",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Rajaniraiyn",
"email": "[email protected]",
"url": "https://rajaniraiyn.github.io/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Rajaniraiyn/js-boilerplate.git"
},
"keywords": [
"javascript",
"boilerplate",
"js",
"js module",
"boiler-plate",
"js-module",
"node",
"browser"
],
"bugs": {
"url": "https://github.com/Rajaniraiyn/js-boilerplate/issues"
},
"homepage": "https://github.com/Rajaniraiyn/js-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.8",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"eslint": "^9.11.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^28.6.0",
"husky": "^9.0.11",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.1",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.55.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.4"
},
"jest": {
"testEnvironment": "node"
}
}