-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "fake-api-server",
"private": true,
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"dependencies": {
"@faker-js/faker": "^7.5.0",
"fast-levenshtein": "^3.0.0",
"lru-cache": "^7.14.0",
"micro": "^9.4.1",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/fast-levenshtein": "0.0.2",
"@types/jest": "^29.0.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.0"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node ./lib/index.js",
"test": "jest --config jest.config.cjs",
"lint": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\""
},
"_moduleAliases": {
"@app": "lib/"
},
"author": "Aexol <aexol@aexol.com> (http://aexol.com)",
"license": "MIT"
}