This repository has been archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "smb-irail-sandbox",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"lighthouse": "^5.0.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-datetime": "^2.16.3",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1",
"testcafe": "^1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=TRUE react-scripts test --coverage --ci --reporters=default",
"eject": "react-scripts eject",
"lint": "eslint ./ --quiet",
"lint:fix": "eslint ./ --quiet --fix",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o storybook",
"test:coverage": "CI=TRUE react-scripts test --coverage",
"test:integration": "testcafe chrome:headless tests/**/*",
"test:watch": "react-scripts test",
"lighthouse": "mkdir -p lighthouse && lighthouse --output json --output html --output-path ./lighthouse/index.json"
},
"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": {
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-loader": "8.0.5",
"eslint-config-airbnb": "^17.1.0"
},
"lighthouseConfig": {
"first-meaningful-paint": 3200,
"estimated-input-latency": 4700
}
}