-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.42 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
{
"name": "@debtcollective/disputes-frontend",
"version": "0.8.5",
"license": "BSD-3-Clause",
"private": true,
"dependencies": {
"@apollo/react-hooks": "3.1.2",
"@date-io/moment": "1.3.11",
"@debtcollective/header": "1.7.0",
"@debtcollective/tools": "0.8.5",
"@material-ui/core": "3.9.3",
"@material-ui/icons": "3.0.2",
"apollo-boost": "0.4.1",
"dotenv-webpack": "1.7.0",
"graphql": "14.5.8",
"isomorphic-unfetch": "3.0.0",
"jss": "10.0.0",
"lodash": "4.17.19",
"material-ui-pickers": "2.2.4",
"moment": "2.24.0",
"next": "9.0.7",
"next-transpile-modules": "2.3.1",
"react": "16.10.1",
"react-apollo": "3.1.1",
"react-dom": "16.10.1",
"react-jsonschema-form": "1.8.0",
"react-jss": "8.6.1",
"react-number-format": "4.2.0",
"react-popper": "1.3.4",
"styled-components": "4.2.0",
"styled-normalize": "8.0.6"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-transform-regenerator": "7.7.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@testing-library/react": "9.2.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-styled-components": "1.10.6",
"core-js": "3.4.1",
"cypress": "3.4.1",
"eslint": "6.5.1",
"eslint-plugin-cypress": "2.7.0",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.14.3",
"flow-bin": "0.108.0",
"husky": "3.0.8",
"jest": "24.9.0",
"jest-dom": "3.5.0",
"lint-staged": "9.4.1",
"start-server-and-test": "1.10.2",
"waait": "1.0.5"
},
"scripts": {
"build": "next build",
"now-build": "next build",
"pre-commit": "lint-staged",
"start": "next -p 8080",
"start:prod": "next start",
"start:ci": "yarn start",
"test": "jest",
"test:ci": "yarn test:coverage",
"test:coverage": "jest --coverage --verbose --color",
"test:cypress": "start-server-and-test start http://localhost:8080 'cypress run'",
"test:cypress:ci": "start-server-and-test start:ci http://localhost:8080 'cypress run --record'",
"test:watch": "jest --watch"
},
"browserslist": "> 0.25%, not dead",
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"flow focus-check",
"git add"
],
"*.{json,md}": [
"prettier-eslint --write",
"git add"
]
}
}