-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
93 lines (93 loc) · 3.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "validatejavascript.com",
"version": "0.0.0-auto",
"private": true,
"description": "A browser version of ESLint",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"install-all": "npm -v && rm -rf node_modules && npm i && lerna exec --concurrency 1 -- npm -v && lerna exec --concurrency 1 -- rm -rf node_modules && lerna exec --concurrency 1 -- npm i",
"ci-all": "npm -v && rm -rf node_modules && npm ci && lerna exec --concurrency 1 -- npm -v && lerna exec --concurrency 1 -- rm -rf node_modules && lerna exec --concurrency 1 -- npm ci",
"build-eslint": "rimraf eslint && npm run clone-eslint && npm run webpackify-eslint && cd eslint && npm install --production",
"clone-eslint": "git clone https://github.com/eslint/eslint.git eslint",
"webpackify-eslint": "node tools/webpackify-eslint",
"dev": "NODE_ENV=development PORT=8014 concurrently --kill-others 'nodemon ./packages/backend --watch packages/backend' 'webpack serve --config webpack --mode=development'",
"build": "NODE_ENV=production webpack --config webpack --mode=production",
"upgrade": "rimraf package-lock.json && ncu -u && npm install && lerna exec --concurrency 1 -- rimraf package-lock.json && lerna exec --concurrency 1 -- ncu -u && lerna exec -- npm install",
"release": "ssh-keyscan 192.241.157.86 >> ~/.ssh/known_hosts && npm run deploy",
"deploy": "pm2 deploy ecosystem.config.js production --force",
"travis-deploy": "if-env TRAVIS_BRANCH=master TRAVIS_PULL_REQUEST=false && npm run release || echo 'Deploy is not run'",
"lint": "eslint .",
"open-browser": "opn http://localhost:$PORT",
"try-production": "NODE_ENV=production PORT=8016 concurrently 'npm run open-browser' 'node ./packages/backend'",
"start": "pm2 startOrRestart ecosystem.config.js --env production"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert",
"ci"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/circlecell/validatejavascript.com.git"
},
"keywords": [
"eslint",
"jslint",
"lint"
],
"author": "Circlecell",
"license": "MIT",
"bugs": {
"url": "https://github.com/circlecell/validatejavascript.com/issues"
},
"homepage": "https://github.com/circlecell/validatejavascript.com#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"errno": "^1.0.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"espree": "^7.3.1",
"ghooks": "^2.0.4",
"html-webpack-plugin": "^4.5.1",
"if-env": "^1.0.4",
"lerna": "^3.22.1",
"loglevel": "^1.7.1",
"nodemon": "^2.0.7",
"npm-check-updates": "^10.2.5",
"open-cli": "^6.0.1",
"postcss-calc": "^8.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^4.1.0",
"postcss-nested": "^5.0.3",
"rimraf": "^3.0.2",
"semver": "^7.3.4",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
}
}