-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 1.17 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
{
"name": "@edx/frontend-enterprise",
"author": "edX",
"license": "AGPL-3.0",
"description": "Frontend libraries and UI components for Enterprise in a monorepo managed by Lerna",
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/frontend-enterprise.git"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"setup": "npm install",
"dev": "npm run dev --workspaces",
"clean": "npm run clean --workspaces && rm -rf ./node_modules",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test:watch": "npm run test:watch --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"bootstrap": "npm install conventional-changelog-conventionalcommits",
"changed": "lerna changed",
"lerna:version": "npx lerna@6 version --conventional-commits --create-release github --no-push",
"i18n_extract": "fedx-scripts formatjs extract packages/**/**/*.{js,jsx,ts,tsx}"
},
"devDependencies": {
"@commitlint/config-conventional": "17.6.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"husky": "6.0.0",
"lerna": "6.6.1"
}
}