-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.99 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
{
"name": "brighter-the-animation",
"version": "1.0.0",
"private": true,
"homepage": "https://www.brightertheanimation.com",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint 'src/**/*.{js,jsx}'",
"prettier": "prettier --config .prettierrc --write '**/*.{js,jsx,css,md,json}' '!{CHANGELOG.md,**/*.min.js,public/**,\\.cache/**}'",
"prepush-check-prettier": "npm run prettier -- --list-different || (echo 'ERROR: Some files were updated by prettier. Please commit them and continue.'; exit 1)",
"prepush": "npm-run-all -p prepush-check-prettier lint",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"core-js": "^3.1.0",
"gh-pages": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^2.9.0",
"react-redux": "^5.0.7",
"react-responsive": "^5.0.0",
"react-scripts": "^5.0.1",
"react-spring": "^6.1.3",
"react-youtube": "^7.9.0",
"redux": "^4.0.0",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.6.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16-context-fixes": "^1.1.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-cypress": "^2.2.1",
"husky": "^0.14.3",
"merge": "^1.2.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.17.1",
"redux-mock-store": "^1.5.3",
"merge": ">=2.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}