-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 864 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
29
30
31
{
"name": "root",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "npm run build:props && npm run build:catalog && cd packages/demo && npm run start",
"build:props": "node ./scripts/build_props.mjs",
"build:catalog": "node ./scripts/build_catalog.mjs"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/parser": "^7.21.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/babel__core": "^7.20.2",
"@typescript-eslint/parser": "^6.4.1",
"babel-plugin-jsx": "^1.2.0",
"es-dirname": "^0.1.0",
"eslint-config-psfe": "1.0.5",
"husky": "^8.0.2",
"prettier": "^2.8.8"
},
"dependencies": {
"core-js": "^3.25.1",
"gsap": "^3.12.2"
}
}