-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "randomkeygen.com",
"version": "1.0.0",
"description": "Random Key Generator",
"private": true,
"scripts": {
"test": "npm run lint",
"build": "npm run clean && NODE_ENV=production webpack --mode=production",
"dev": "NODE_ENV=development webpack serve --port 8107",
"clean": "rimraf dist",
"upgrade": "ncu -u && npm install",
"lint": "eslint . --ext .js --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**'",
"deploy": "pm2 deploy ecosystem.json production --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circlecell/jsonlintdotcom.git"
},
"keywords": [
"jsonlint",
"lint",
"json"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/circlecell/jsonlintdotcom/issues"
},
"homepage": "https://github.com/circlecell/jsonlintdotcom#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^4.5.2",
"npm-check-updates": "^10.3.1",
"optimist": "^0.6.1",
"rimraf": "^3.0.2",
"script-loader": "^0.7.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"balajs": "^1.0.10"
}
}