-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.4 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
44
45
46
47
48
49
50
51
{
"name": "@edx/frontend-enterprise-hotjar",
"version": "7.1.0",
"description": "Utils for Hotjar.",
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/frontend-enterprise.git"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,jsx"
}
},
"scripts": {
"dev": "npx npm-watch build",
"clean": "make clean",
"build": "make build",
"i18n_extract": "BABEL_ENV=i18n fedx-scripts babel src --quiet > /dev/null",
"lint": "fedx-scripts eslint --ext .js --ext .jsx .",
"lint:fix": "fedx-scripts eslint --fix --ext .js --ext .jsx .",
"snapshot": "fedx-scripts jest --updateSnapshot",
"test": "fedx-scripts jest --coverage --passWithNoTests",
"test:watch": "npm run test -- --watch"
},
"author": "edX",
"license": "AGPL-3.0",
"homepage": "https://github.com/openedx/frontend-enterprise#readme",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"bugs": {
"url": "https://github.com/openedx/frontend-enterprise/issues"
},
"sideEffects": false,
"devDependencies": {
"@edx/browserslist-config": "1.1.0",
"@openedx/frontend-build": "14.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "6.14.2"
},
"peerDependencies": {
"react": "^16.12.0 || ^17.0.0",
"react-dom": "^16.12.0 || ^17.0.0",
"react-router-dom": "^6.0.0"
}
}