-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "periodum_api",
"version": "1.0.0",
"description": "A database that compiles tons of information about elements and compounds.",
"main": "dist/app.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"dev": "nodemon --config nodemon.json src/app.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "prisma generate",
"import": "ts-node src/pubchem/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@appsignal/express": "^1.0.26",
"@appsignal/nodejs": "^2.3.2",
"@prisma/client": "^3.12.0",
"axios": "^0.26.1",
"express": "^4.17.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"prisma": "^3.12.0",
"ts-jest": "^27.1.3",
"ts-mocha": "^9.0.2",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.6.2"
}
}