-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 KB
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
{
"name": "gamify",
"version": "0.1.0",
"private": true,
"dependencies": {
"lodash": "^4.17.15",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-modal": "^3.11.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.2.0",
"use-timer": "^1.0.6",
"waait": "^1.0.5"
},
"scripts": {
"cov": "yarn test --watchAll=false --coverage",
"start": "react-scripts start",
"lint:js": "eslint --quiet --ext .js,.jsx --ignore-path .gitignore ./src",
"lint:scss": "stylelint './src/**/*.scss'",
"pretest": "yarn audit; yarn lint:scss && yarn lint:js",
"test": "react-scripts test",
"build": "react-scripts build",
"eject": "react-scripts eject",
"storybook": "start-storybook"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-knobs": "^5.2.6",
"@storybook/addon-viewport": "^5.2.6",
"@storybook/react": "^5.2.6",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"jest-localstorage-mock": "^2.4.0",
"prettier": "^1.18.2",
"stylelint": "^11.0.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.11.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/**/*.stories.jsx"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"resolutions": {
"handlebars": "~4.5.2",
"serialize-javascript": ">=2.1.1"
}
}