forked from missive/emoji-mart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "@emoji-mart/monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspace @emoji-mart/website dev",
"build": "yarn workspace emoji-mart build",
"build:data": "yarn workspace @emoji-mart/data build",
"build:react": "yarn workspace @emoji-mart/react build",
"build:website": "yarn workspace @emoji-mart/website build",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"jest": "28.0.0",
"jest-environment-jsdom": "28.0.0",
"prettier": "2.5.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"engines": {
"yarn": ">=1"
}
}