-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
101 lines (101 loc) · 3.01 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "sfn-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.2",
"@apollo/react-testing": "^3.1.2",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@nivo/bar": "^0.54.0",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"axios": "^0.19.0",
"date-fns": "^2.7.0",
"graphql": "^14.5.8",
"lodash": "^4.17.15",
"moxios": "^0.4.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^3.1.2",
"react-dom": "^16.8.6",
"react-mailchimp-form": "^1.0.2",
"react-paginate": "^6.3.0",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.3",
"redux": "^4.0.1",
"redux-form": "^8.2.4",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"start-test-server": "PORT=8082 react-scripts start",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "yarn run lint",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:coverage": "react-scripts test --env=jsdom --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"cypress:open": "cypress open",
"cypress:ci": "cypress run",
"cypress:local": "cypress open --config baseUrl=http://localhost:8082",
"cypress:install": "cypress install",
"e2e:local": "start-server-and-test start-test-server http://localhost:8082 cypress:local",
"e2e:ci": "npm-run-all --parallel --race start-test-server 'cypress:ci --config baseUrl=http://localhost:8082'"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"engines": {
"node": "10.13.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"coveralls": "^3.0.3",
"cypress": "^3.2.0",
"cypress-cucumber-preprocessor": "^1.11.2",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"npm-run-all": "^4.1.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"start-server-and-test": "^1.9.0"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!/node_modules/",
"!src/index.js"
]
}
}