-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "news-api-client",
"version": "0.3.2",
"description": "A simple client for the news API",
"main": "index.js",
"author": "Paul M Dorr",
"license": "MIT",
"scripts": {
"build": "next build",
"start": "now dev",
"deploy": "now",
"test": "NODE_ENV=test jest --coverage --verbose",
"test:watch": "NODE_ENV=test jest --verbose --watch",
"e2e": "cypress run",
"cy:open": "cypress open"
},
"dependencies": {
"axios": "^0.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"micro": "^9.3.4",
"next": "^9.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-lazy-load": "^3.0.13",
"styled-components": "^4.3.2",
"sw-precache-webpack-plugin": "^0.11.5"
},
"devDependencies": {
"@types/enzyme": "^3.10.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.15",
"@types/next": "^8.0.6",
"@types/node": "^12.6.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/styled-components": "^4.1.18",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"jest-emotion": "^10.0.14",
"now": "^16.1.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}