Initial commit
This commit is contained in:
66
package.json
Normal file
66
package.json
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"name": "Seer",
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"build": "npx ts-node build.ts",
|
||||
"lint": "npx eslint --ext .ts src/",
|
||||
"lint:tests": "npx eslint --ext .ts spec/",
|
||||
"start": "node -r module-alias/register ./dist --env=production",
|
||||
"dev": "nodemon",
|
||||
"test": "nodemon --config ./spec/nodemon.json",
|
||||
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec"
|
||||
},
|
||||
"nodemonConfig": {
|
||||
"watch": [
|
||||
"src"
|
||||
],
|
||||
"ext": "ts, html",
|
||||
"ignore": [
|
||||
"src/public"
|
||||
],
|
||||
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
|
||||
},
|
||||
"_moduleAliases": {
|
||||
"@src": "dist"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"cookie-parser": "^1.4.6",
|
||||
"dotenv": "^16.3.1",
|
||||
"express": "^4.18.2",
|
||||
"express-async-errors": "^3.1.1",
|
||||
"helmet": "^7.0.0",
|
||||
"inserturlparams": "^1.0.1",
|
||||
"jet-logger": "^1.3.1",
|
||||
"jet-validator": "^1.1.1",
|
||||
"jsonfile": "^6.1.0",
|
||||
"module-alias": "^2.2.3",
|
||||
"morgan": "^1.10.0",
|
||||
"ts-command-line-args": "^2.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/cookie-parser": "^1.4.3",
|
||||
"@types/express": "^4.17.17",
|
||||
"@types/find": "^0.2.1",
|
||||
"@types/fs-extra": "^11.0.1",
|
||||
"@types/jasmine": "^4.3.5",
|
||||
"@types/jsonfile": "^6.1.1",
|
||||
"@types/morgan": "^1.9.4",
|
||||
"@types/node": "^20.4.2",
|
||||
"@types/supertest": "^2.0.12",
|
||||
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
"eslint": "^8.44.0",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"find": "^0.3.0",
|
||||
"fs-extra": "^11.1.1",
|
||||
"jasmine": "^5.0.2",
|
||||
"nodemon": "^3.0.1",
|
||||
"supertest": "^6.3.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"typescript": "^5.1.6"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user