-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@thumbtack/thumbprint-tokens",
"description": "Design variables that power Thumbtack’s UI.",
"version": "13.0.3",
"main": "dist/javascript-cjs/index.js",
"module": "dist/javascript-es/index.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "yarn clear && yarn build",
"build:main": "ts-node ./src/index.ts",
"build:esm": "tsc --project ./tsconfig-build.json --module es2015 --target ES2015 --outDir dist/javascript-es",
"build:cjs": "tsc --project ./tsconfig-build.json --module commonjs --target ES2015 --outDir dist/javascript-cjs",
"build": "yarn build:main && yarn build:esm && yarn build:cjs",
"clear": "rm -rf dist",
"pretty": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,md,mdx,html}\"",
"typecheck": "tsc --noEmit",
"lint:js": "eslint . --ext .jsx --ext .js",
"lint:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,css,scss,json,md,mdx,html}\"",
"test": "jest",
"static": "yarn typecheck && yarn lint:js && yarn lint:prettier",
"verify": "yarn start && yarn static && yarn test",
"prepublish": "yarn start",
"release": "yarn npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Daniel O'Connor <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.1",
"@types/jszip": "^3.4.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"fs-extra": "^10.1.0",
"handlebars": "^4.2.0",
"husky": "^3.0.9",
"jest": "^28.1.0",
"jszip": "^3.10.0",
"lodash": "^4.17.4",
"np": "^5.2.1",
"prettier": "^2.6.2",
"pretty-quick": "^2.0.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thumbtack/thumbprint-tokens.git"
},
"bugs": {
"url": "https://github.com/thumbtack/thumbprint-tokens/issues"
},
"homepage": "https://thumbprint.design/tokens",
"dependencies": {
"@netlify/functions": "^1.0.0",
"apollo-server-lambda": "^2.9.7",
"graphql": "^14.5.8"
},
"resolutions": {
"@types/istanbul-lib-report": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "[email protected]"
}