forked from umbrae/jsonlintdotcom
-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
66
67
68
69
70
71
{
"name": "jsonlintdotcom",
"version": "0.0.1",
"description": "The JSON Validator",
"private": true,
"scripts": {
"test": "npm run lint",
"build": "npm run clean && NODE_ENV=production webpack --mode=production",
"dev": "NODE_ENV=development webpack serve --port 8106",
"clean": "rimraf dist",
"upgrade": "npx npm-check-updates -u && npm i",
"reinstall": "rm -rf node_modules package-lock.json && npm i",
"lint": "eslint . --ext .js --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**' --fix",
"deploy": "pm2 deploy ecosystem.json production --force",
"stylelint": "stylelint static/css/style.css"
},
"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.14.5",
"@babel/core": "^7.14.6",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"exports-loader": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.1.0",
"napa": "^3.0.0",
"optimist": "^0.6.1",
"rimraf": "^3.0.2",
"script-loader": "^0.7.2",
"string-replace-loader": "^3.0.3",
"style-loader": "^3.1.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"balajs": "^1.0.10",
"clipboard": "^2.0.8",
"codemirror": "^5.62.0",
"js-beautify": "^1.14.0",
"jsonlint-mod": "^1.7.6",
"jsonminify": "^0.4.1"
}
}