-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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
{
"name": "colibri",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "yarn lint && yarn test:unit --no-watch && yarn test:integration",
"test:unit": "react-scripts test --verbose",
"test:integration": "cypress run",
"test:coverage": "react-scripts test --coverage",
"coveralls": "react-scripts test --env=jsdom --coverage && cat coverage/lcov.info | coveralls",
"lint": "tslint --fix --config tslint.json 'src/**/*.{js,jsx,ts,tsx}'",
"analyze-bundle-size": "yarn build && source-map-explorer build/static/js/main.*",
"push": "yarn test && git push"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"heroku-run-build-script": true,
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/__tests__/",
"!src/_support/serviceWorker.ts",
"!src/index.tsx",
"!src/setupTests.js",
"!<rootDir>/node_modules/"
]
},
"engines": {
"yarn": ">=1.12.3"
},
"dependencies": {
"@types/jest": "24.0.6",
"@types/node": "11.9.5",
"@types/react": "16.8.4",
"@types/react-dom": "16.8.2",
"@types/react-router-dom": "^4.3.1",
"@types/sanitize-html": "^1.18.2",
"axios": "^0.18.0",
"localforage": "^1.7.3",
"node-sass": "^4.11.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-head": "^3.1.0",
"react-router-dom": "^4.3.1",
"react-sanitized-html": "^2.0.0",
"react-scripts": "2.1.5",
"sanitize-html": "^1.20.0",
"typescript": "3.3.3333"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.9.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"cypress": "^3.1.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"react-test-renderer": "^16.8.3",
"sinon": "^7.2.4",
"sinon-chai": "^3.3.0",
"source-map-explorer": "^1.7.0",
"tslint": "^5.12.1",
"tslint-no-unused-expression-chai": "^0.1.4",
"tslint-react": "^3.6.0"
}
}