-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "js-starter",
"version": "1.0.0",
"description": "JS starter templates",
"main": "index.js",
"scripts": {
"start": "babel-node -r dotenv/config src/index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix --max-warnings=0 .",
"prettier:check": "prettier --check '**/*.{js}'",
"prepare": "husky install",
"build": "webpack --config ./webpack.config.js --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warlock7/js-starter.git"
},
"author": "George",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/register": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"babel-loader": "^8.2.3",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"core-js": "^3.20.2",
"dotenv": "^10.0.0"
}
}