-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "@specifyapp/parsers",
"version": "0.0.11",
"license": "CC-BY-NC-SA-4.0",
"main": "index.js",
"dependencies": {
"@mobily/ts-belt": "^3.12.0",
"@types/lodash": "^4.14.175",
"@types/mustache": "^4.1.2",
"@types/node": "16.3.3",
"@types/prettier": "^2.3.2",
"@types/svgo": "2.6.1",
"@types/theme-ui": "^0.6.0",
"@types/tinycolor2": "^1.4.3",
"@types/xml2js": "^0.4.9",
"deepmerge": "^4.2.2",
"got": "^12.5.3",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "2.3.2",
"svgo": "2.8.0",
"svgo-v3": "npm:svgo@3.0.2",
"tinycolor2": "^1.4.1",
"ts-pattern": "^4.0.3",
"typescript": "4.5.5",
"xml2js": "^0.4.23",
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "29.4.0",
"dotenv": "^10.0.0",
"glob": "^7.1.7",
"jest": "29.4.2",
"jest-circus": "^29.4.2",
"lint-staged": "^12.3.4",
"sass": "1.49.10",
"ts-jest": "29.0.5"
},
"lint-staged": {
"*": "prettier -u -w"
},
"scripts": {
"test": "jest --coverage --runInBand",
"generate:seeds": "ts-node ./tests/helper/generate.seed.ts",
"format": "prettier '**/*' -u -w",
"prepare": "git config --local core.hooksPath .hooks"
}
}