This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "picmo",
"private": true,
"type": "module",
"description": "JavaScript emoji picker. Any app, any framework.",
"keywords": [
"emoji",
"emoji picker",
"javascript"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild:docs": "npm install --prefix docs",
"prebuild:storybook": "npm run build",
"postinstall": "npm install --prefix docs && npm install --prefix storybook",
"build": "lerna run build",
"precommit": "lerna run lint && lerna run check && lerna run test",
"clean": "lerna run clean",
"deploy:docs": "npm run build:docs && netlify deploy --prod",
"test": "lerna run test",
"test:watch": "lerna run --parallel test:watch",
"lint": "lerna run lint",
"start": "npm run --prefix storybook start",
"build:storybook": "npm run --prefix storybook build",
"build:docs": "npm run build:storybook && npm run --prefix docs build",
"start:docs": "npm run --prefix docs start"
},
"author": "Joe Attardi <[email protected]> (https://joeattardi.dev)",
"repository": "joeattardi/picmo",
"homepage": "https://picmojs.com",
"bugs": "https://github.com/joeattardi/picmo/issues",
"funding": "https://github.com/sponsors/joeattardi",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"lerna": "^5.1.8",
"nx": "^14.4.3"
},
"dependencies": {
"emojibase": "^6.1.0",
"twemoji": "^14.0.1"
}
}