-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
36 lines (36 loc) · 1 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
{
"name": "@glif/modules",
"private": false,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"bootstrap:local": "lerna bootstrap --force-local",
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"prepublishOnly": "npm run build",
"publish": "lerna publish",
"test": "lerna run test"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^29.5.12",
"cross-env": "^7.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jest": "^29.7.0",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"license": "(Apache-2.0 OR MIT)"
}