This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
generated from CompSciLauren/hackathon-template-react-terra-prettier
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2 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
{
"name": "web-clock-time-tracker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intl": "^2.9.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"terra-alert": "^4.36.0",
"terra-badge": "^3.39.0",
"terra-base": "^5.36.0",
"terra-button": "^3.43.0",
"terra-card": "^3.32.0",
"terra-collapsible-menu-view": "^6.36.0",
"terra-dropdown-button": "v1.17.0",
"terra-form-checkbox": "^4.6.0",
"terra-form-input": "^3.7.0",
"terra-form-select": "^6.10.0",
"terra-grid": "^6.22.0",
"terra-heading": "^4.32.0",
"terra-icon": "^3.33.0",
"terra-notification-dialog": "^3.36.0",
"terra-popup": "^6.36.0",
"terra-table": "^4.10.0",
"terra-tag": "^2.36.0",
"terra-text": "^4.32.0",
"terra-time-input": "^4.29.0"
},
"scripts": {
"aggregate-translations": "tt-aggregate-translations -b ./ -d ./src/**/translations -d ./translations -o ./node_modules/terra-i18n/node_modules -f es6",
"prestart": "npm run aggregate-translations",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write '**/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"terra-aggregate-translations": "^1.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}