-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 KB
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
{
"name": "mocha-chai",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"copy": "copyfiles -u 1 'src/app/seeds/**' dist",
"build": "npm run clean && npx tsc && npm run copy",
"start": "node ./dist/index.js",
"start:ts": "ts-node --esm ./src/index.ts",
"server": "nodemon --esm ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git@github.com-personal:sailingwithsandeep/mocha-chai.git"
},
"author": "Sandeep Parmar",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"copyfiles": "^2.4.1"
}
}