-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "test-project",
"version": "1.0.0",
"description": "A sample project to test github automation",
"main": "index.js",
"scripts": {
"start": "node index.js",
"compile": "tsc -p .",
"lint": "eslint \"./src/**/*.ts\"",
"format-check": "prettier --check \"./src/**/*.ts\"",
"format-fix": "prettier --write \"./src/**/*.ts\"",
"test": "jest",
"test:istanbul": "nyc jest",
"test:coverage": "jest --coverage --coverageReporters=\"text-summary\" --coverageReporters=\"json-summary\"",
"posttest": "jest-it-up",
"clean": "rimraf dist"
},
"author": "Shardeum Systems & Automation",
"devDependencies": {
"@shardus/monitor-client": "shardeum/x-monitor-client#dev",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "5.48.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-xss": "0.1.12",
"globals": "^15.3.0",
"jest": "^29.7.0",
"jest-it-up": "^3.2.0",
"nyc": "^17.0.0",
"prettier": "^2.8.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"express": "^4.17.1"
}
}