-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.88 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
102
103
104
105
106
107
108
{
"name": "eyra-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build src",
"dev": "next src dev",
"start": "next src dev",
"start:production": "NODE_ENV=production yarn next start -p 80 src",
"test": "react-scripts test --env=jsdom",
"lint": "tslint --project ./src",
"cypress-install": "yarn add --peer @cypress/[email protected] [email protected]",
"cypress": "cypress open",
"cypress-test": "react-scripts start & wait-on http://localhost:3000 && cypress run",
"eject": "react-scripts eject",
"typecheck": "tsc --noEmit -p src"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"@material-ui/styles": "^4.4.1",
"@nteract/markdown": "^4.0.1",
"@nteract/presentational-components": "^3.0.6",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"formik": "^1.5.8",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"next": "^9.0.5",
"nprogress": "^0.2.0",
"postcss": "^7.0.18",
"postcss-clean": "^1.1.0",
"prismic-javascript": "^2.0.3",
"prismic-reactjs": "^1.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-popout": "^1.0.2",
"react-rte": "^0.16.1",
"react-scripts": "^4.0.0",
"react-transition-group": "^4.3.0",
"styled-components": "^5.2.0",
"styled-jsx": "^3.2.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/clean-css": "^4.2.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.5",
"@types/nprogress": "^0.2.0",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/react-rte": "^0.16.0",
"@types/react-transition-group": "^4.2.2",
"@types/styled-jsx": "^2.2.8",
"@types/yup": "^0.26.24",
"@zeit/next-css": "1.0.1",
"autoprefixer": "^9.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"clean-css": "^4.2.1",
"file-loader": "^4.2.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"next-routes": "^1.4.2",
"ts-loader": "^6.1.0",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "4.0.0",
"typescript": "3.6.3",
"typescript-plugin-css-modules": "^1.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"!src/index.tsx"
]
},
"lint-staged": {
"src/*.{ts,tsx}": [
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"peerDependencies": {
"@cypress/webpack-preprocessor": "3.0.1",
"cypress": "3.1.4"
}
}