-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 675 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 675 Bytes
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
{
"name": "workspaces",
"private": true,
"workspaces": [
"./spring",
"./framer",
"./examples/*"
],
"scripts": {
"build": "yarn build:spring && yarn build:framer",
"build:spring": "yarn workspace react-spring-modal build",
"build:framer": "yarn workspace framer-motion-modal build",
"example:ts": "yarn workspace typescript-example start",
"example:next": "yarn workspace nextjs-example dev"
},
"devDependencies": {
"destiny": "^0.7.0",
"prettier": "^2.0.5",
"eslint": "^7.17.0",
"typescript": "^3.9.5"
},
"dependencies": {},
"volta": {
"node": "14.15.4",
"npm": "7.4.3",
"yarn": "1.22.10"
}
}