-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "signature-generator",
"version": "0.1.0",
"private": true,
"dependencies": {
"bulma": "^0.9.0",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-aad-msal": "^1.1.3",
"react-dom": "^16.13.1",
"react-phone-number-input": "^2.5.3",
"react-redux": "^7.2.1",
"recompose": "^0.30.0",
"redux-thunk": "^2.3.0",
"snyk": "^1.392.1"
},
"devDependencies": {
"cross-env": "^5.2.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.7.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"react-scripts": "^3.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "cross-env IMAGE_INLINE_SIZE_LIMIT=0 INLINE_RUNTIME_CHUNK=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test-pre-commit": "cross-env CI=true react-scripts test --passWithNoTests",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn run test-pre-commit",
"eslint --fix",
"git add"
]
},
"snyk": true
}