-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vatweb",
"version": "1.0.0",
"private": true,
"dependencies": {
"classnames": "^2.2.5",
"flow-typed": "^2.6.1",
"keymirror": "^0.1.1",
"normalize.css": "^8.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-ga": "^2.7.0",
"react-icons": "^3.7.0",
"react-redux": "^5.0.7",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.2.0",
"react-syntax-highlighter": "^11.0.2",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.110.0",
"node-sass-chokidar": "^1.3.0",
"prettier": "^1.13.2",
"react-test-renderer": "^16.4.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "yarn run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:ci": "yarn run test --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "yarn run build-css && node-sass-chokidar src/ -o src/ --watch",
"bundle-analyzer": "node bundle-analyzer.js",
"lint": "yarn run eslint src/",
"flow-types": "flow-typed install",
"flow": "./node_modules/.bin/flow",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vincentaudebert/vatweb.git"
},
"authors": [
"Vincent Audebert <[email protected]>"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/*.container.{js,jsx}",
"!**/*.reducer.{js,jsx}",
"!**/*.constants.{js,jsx}",
"!**/*.actions.{js,jsx}",
"!src/index.js",
"!src/setupTests.js",
"!src/store.js",
"!src/registerServiceWorker.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}