-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "@deriv-com/quill-tokens",
"version": "0.0.0",
"private": false,
"description": "",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npx ts-node index.ts",
"clean": "rimraf sd-tokens dist",
"format": "eslint src/**/*.ts --fix",
"generate:styles": "node scripts/shaper.js && node scripts/transformer.js && npx prettier --write lib/styles",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:ci": "jest --coverage",
"test:update": "jest --updateSnapshot",
"prepare": "husky install",
"prepublish": "babel src --out-dir dist && cp -r lib/styles/* dist && for f in dist/*.scss; do sass \"$f\" \"${f%.scss}.css\"; done"
},
"keywords": [],
"author": "Michio",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.11",
"@prettier/sync": "^0.3.0",
"@tokens-studio/sd-transforms": "^0.11.0",
"@types/jest": "^29.5.4",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-jest": "^29.7.0",
"camel-case": "^4.1.2",
"eslint": "^8.48.0",
"husky": "^8.0.0",
"jest": "^29.6.4",
"lodash-es": "^4.17.21",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"sass": "^1.77.2",
"sd-tailwindcss-transformer": "^1.4.0",
"style-dictionary": "^3.8.0",
"token-transformer": "^0.0.33",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^10.0.4",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/lodash": "^4.14.197",
"lodash": "^4.17.21",
"remove": "^0.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deriv-com/quill-tokens.git"
}
}