-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "essentially-api",
"version": "1.0.0",
"description": "essential oils api",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"dev": "NODE_ENV=development nodemon build/index.js",
"dev:debug": "nodemon --inspect build/index.js",
"build:dev": "NODE_ENV=development webpack --watch",
"build": "webpack",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"tslint": "tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:check"
}
},
"dependencies": {
"@types/express": "^4.17.14",
"body-parser": "^1.20.1",
"dotenv": "^8.6.0",
"elasticsearch": "^16.7.3",
"express": "^4.18.2",
"log": "^6.3.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@types/webpack": "^5.28.0",
"cheerio": "^1.0.0-rc.12",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.5.0",
"copy-webpack-plugin": "^11.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"fs": "^0.0.1-security",
"husky": "^8.0.1",
"jest": "^29.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.2.2"
}
}