mantra/package.json

77 lines
2.5 KiB
JSON
Raw Normal View History

2019-10-03 19:46:08 +00:00
{
"private": true,
2019-10-03 19:46:08 +00:00
"scripts": {
2019-10-07 21:20:38 +00:00
"build": "gulp Build -t Debug",
"release": "gulp Build -t Release",
"rebuild": "npm run clean && npm run build",
"rebuild-release": "npm run clean && npm run release",
"watch": "gulp Watch -t Debug",
"watch-release": "gulp Watch -t Release",
"stop": "gulp Stop -t Debug",
"stop-release": "gulp Stop -t Release",
"clean": "gulp Clean",
"lint": "npm run lint-gulp && npm run lint-project",
2021-05-10 23:13:23 +00:00
"lint-base": "eslint --max-warnings 0 --ignore-pattern \"!.eslintrc.js\"",
2021-05-11 00:58:24 +00:00
"lint-gulp": "npm run lint-base -- --ext .ts ./gulp gulpfile.ts",
2021-05-10 23:13:23 +00:00
"lint-project": "npm run lint-base -- --ext .js,.jsx,.ts,.tsx ./src/App/src",
"lint-ide": "npm run lint || exit 0",
2019-10-07 21:20:38 +00:00
"prepare": "npm run rebuild"
2019-10-03 19:46:08 +00:00
},
"dependencies": {},
"devDependencies": {
2021-05-11 17:19:24 +00:00
"@manuth/eslint-plugin-typescript": "^2.3.10",
2021-05-10 20:35:36 +00:00
"@manuth/tsconfig": "^1.2.9",
2021-05-10 23:13:23 +00:00
"@manuth/typescript-eslint-plugin": "^1.3.5",
2021-05-10 20:35:36 +00:00
"@types/bootstrap": "^5.0.13",
"@types/browser-sync": "^2.26.1",
2019-10-07 11:48:01 +00:00
"@types/browserify": "^12.0.36",
"@types/fancy-log": "^1.3.1",
2021-05-10 20:35:36 +00:00
"@types/fs-extra": "^9.0.11",
"@types/gulp": "^4.0.8",
2019-10-07 11:48:01 +00:00
"@types/gulp-if": "0.0.33",
2021-05-10 20:35:36 +00:00
"@types/gulp-rename": "2.0.0",
2019-10-07 16:59:23 +00:00
"@types/gulp-sass": "^4.0.0",
2021-05-10 20:35:36 +00:00
"@types/gulp-terser": "^1.2.1",
"@types/jquery": "^3.5.5",
2019-10-07 11:48:01 +00:00
"@types/merge-stream": "^1.1.2",
2021-05-10 20:35:36 +00:00
"@types/minimist": "^1.2.1",
2021-05-11 17:19:24 +00:00
"@types/node": "^15.0.2",
2019-10-07 11:48:01 +00:00
"@types/vinyl-buffer": "^1.0.0",
"@types/vinyl-source-stream": "0.0.30",
2021-05-10 20:35:36 +00:00
"@types/watchify": "^3.11.0",
2021-05-11 17:19:24 +00:00
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
2021-05-10 20:35:36 +00:00
"bootstrap": "^5.0.0",
"browser-sync": "^2.26.14",
"browserify": "^17.0.0",
2019-10-07 15:50:06 +00:00
"create-symlink": "^1.0.0",
2021-05-11 17:19:24 +00:00
"eslint": "^7.26.0",
"eslint-plugin-deprecation": "^1.2.1",
2021-05-10 23:13:23 +00:00
"eslint-plugin-import": "^2.22.1",
2021-05-11 17:19:24 +00:00
"eslint-plugin-jsdoc": "^34.0.1",
2019-10-07 11:48:01 +00:00
"fancy-log": "^1.3.3",
2021-05-10 20:35:36 +00:00
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
2019-10-07 11:48:01 +00:00
"gulp-if": "^3.0.0",
2021-05-10 20:35:36 +00:00
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-terser": "^2.0.1",
"jquery": "^3.6.0",
2019-10-07 11:48:01 +00:00
"merge-stream": "^2.0.0",
2021-05-10 20:35:36 +00:00
"minimist": "^1.2.5",
2019-10-07 16:59:23 +00:00
"node-sass-tilde-importer": "^1.0.2",
2019-11-22 13:14:33 +00:00
"popper.js": "^1.16.0",
2019-10-07 11:48:01 +00:00
"string-argv": "^0.3.1",
2021-05-10 20:35:36 +00:00
"ts-node": "^9.1.1",
2021-05-11 17:19:24 +00:00
"tsify": "^5.0.4",
2021-05-10 23:13:23 +00:00
"tslint": "^6.1.3",
2021-05-10 20:35:36 +00:00
"typescript": "^4.2.4",
"typescript-tslint-plugin": "^1.0.1",
"upath": "^2.0.1",
2019-10-07 11:48:01 +00:00
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
2021-05-10 20:35:36 +00:00
"watchify": "^4.0.0"
}
2019-10-03 19:46:08 +00:00
}