-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "@mswjs/data",
"description": "Data modeling and relation library for testing JavaScript applications.",
"version": "0.16.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Artem Zakharchenko",
"license": "MIT",
"scripts": {
"start": "tsc -w",
"format": "prettier src/**/*.ts --write",
"test": "vitest -c test/vitest.config.ts",
"test:ts": "tsc -p test/typings/tsconfig.json",
"clean": "rimraf ./lib",
"build": "yarn clean && tsc",
"release": "release publish",
"prepare": "yarn simple-git-hooks init",
"prepublishOnly": "yarn build && yarn test:ts && yarn test"
},
"files": [
"lib",
"README.md"
],
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@faker-js/faker": "^6.3.1",
"@ossjs/release": "^0.8.0",
"@types/debug": "^4.1.7",
"@types/node-fetch": "^2.5.10",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"jsdom": "^22.1.0",
"msw": "^2.0.8",
"node-fetch": "^2.6.1",
"page-with": "^0.6.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"ts-node": "^9.1.1",
"typescript": "4.3.5",
"vitest": "^0.34.6"
},
"dependencies": {
"@types/lodash": "^4.14.172",
"@types/md5": "^2.3.0",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.0",
"date-fns": "^2.21.1",
"debug": "^4.3.1",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"outvariant": "^1.2.1",
"pluralize": "^8.0.0",
"strict-event-emitter": "^0.5.0",
"uuid": "^8.3.1"
},
"optionalDependencies": {
"msw": "^2.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}