-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.54 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
{
"name": "motionly",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"websites/*"
],
"license": "MIT",
"devDependencies": {
"turbo": "^1.6.3"
},
"scripts": {
"postinstall": "patch-package",
"build": "turbo build",
"analyze": "ANALYZE=true turbo build",
"start": "turbo start",
"test": "turbo test",
"turbo": "turbo turbo",
"dev": "turbo dev",
"fast-publish": "changeset add; changeset version; changeset publish",
"preview": "cd packages/components; yarn preview",
"render": "cd packages/components; yarn render",
"lambda:motionly": "cd packages/components; yarn lambda:motionly",
"lambda:motionly-local": "cd packages/components; yarn lambda:motionly-local",
"lambda:function": "cd packages/components; yarn lambda:function",
"lambda:render": "cd packages/components; yarn lambda:render",
"format": "prettier --write \"**/*.{js,ts,tsx}\" && eslint --fix \"**/*.{js,ts,tsx}\""
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.47.2-alpha.0",
"@typescript-eslint/parser": "^5.47.2-alpha.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.1"
}
}