/
ats
/
test01
Обзор
Документация
Войти
/
ats
/
test01
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
package.json
37 строк
1 KB
tsvetkovAv
initial commit
28 дек 2024, 17:26
28 дек 2024, 17:26
7b1c591
Код
Авторство
О чём код?
{ "name": "my-app", "version": "0.0.1", "description": "", "main": "index.js", "scripts": { "clean:dist": "rimraf ./dist", "clean:modules": "rimraf ./node_modules", "clean": "npm run clean:dist && npm run clean:modules", "lint": "npx eslint src/**/*.ts", "lint:fix": "npx eslint --fix src/**/*.ts && npx eslint --fix test/**/*.ts", "prebuild": "npm run clean:dist", "build": "tsc", "start": "node dist/src/index", "start:dev": "ts-node-dev --respawn --transpile-only src/index.ts", "pretest": "npm run build", "test": "mocha dist/test/**/*.js", "test:dev": "ts-mocha test/**/*.spec.ts -w --watch-files '**/*.ts'" }, "devDependencies": { "@types/chai": "^4.3.4", "@types/lodash": "^4.14.188", "@types/mocha": "^10.0.0", "@types/node": "^18.11.9", "@types/sinon": "^10.0.13", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "chai": "^4.3.7", "eslint": "^8.27.0", "mocha": "^10.1.0", "rimraf": "^3.0.2", "sinon": "^14.0.2", "ts-mocha": "^10.0.0", "ts-node-dev": "^2.0.0", "typescript": "^4.8.4" } }