-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "serial-number-server",
"version": "0.0.202004290956",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint --ext ts,tsx,js --fix .",
"prettier": "prettier --write .",
"server": "node dist/server.js",
"test": "jest --coverage",
"test:ci": "jest --ci --coverage",
"ts-node": "ts-node --files --project tsconfig.json src/main.ts"
},
"author": "Makoto Mizukami <makoto@circleci.com>",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --fix",
"*.{ts,tsx,js,css,md}": "prettier --write"
}
}