-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
80 lines (80 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@edx/edx-bootstrap",
"description": "The Bootstrap theme for Open edX",
"license": "Apache-2.0",
"repository": "[email protected]:edx/edx-bootstrap.git",
"version": "1.0.4",
"homepage": "http://edx.github.io/edx-bootstrap",
"scripts": {
"start": "react-scripts start",
"build-docs": "react-scripts build",
"build": "node-sass --importer=utils/sass-importer --output-style expanded scss/ -o dist/",
"lint": "stylelint ./scss/**/*.scss",
"lint-fix": "stylelint ./scss/**/*.scss --fix",
"test": "react-scripts test",
"eject": "react-scripts eject",
"semantic-release": "semantic-release",
"predeploy": "npm run build-docs",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"browserslist": [
"extends @edx/browserslist-config"
],
"dependencies": {
"bootstrap": "4.6.2"
},
"devDependencies": {
"@edx/browserslist-config": "^1.1.1",
"@edx/stylelint-config-edx": "2.3.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.2.2",
"chroma-js": "2.6.0",
"classnames": "2.5.1",
"gh-pages": "6.2.0",
"husky": "8.0.3",
"jquery": "3.7.1",
"lodash": "4.17.21",
"node-sass": "9.0.0",
"popper.js": "1.16.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "6.28.0",
"react-router-hash-link": "1.2.2",
"react-scripts": "5.0.1",
"semantic-release": "^21.0.7"
},
"release": {
"branch": "master",
"tagFormat": "v${version}",
"verifyConditions": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": {
"path": "dist/*"
}
}
],
"analyzeCommits": "@semantic-release/commit-analyzer",
"generateNotes": "@semantic-release/release-notes-generator",
"prepare": "@semantic-release/npm",
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": {
"path": "dist/*"
}
}
],
"success": [],
"fail": []
}
}