-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.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
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
{
"name": "data-tiles",
"version": "0.2.1",
"description": "Data Tiles is a small website that shows data.",
"main": "server.ts",
"scripts": {
"build": "next build && tsc -p tsconfig.server.json",
"start": "cross-env NODE_ENV=production ts-node -P tsconfig.server.json .next/server/index.js",
"test": "cross-env NODE_ENV=test jest",
"coverage": "cross-env NODE_ENV=test jest --coverage",
"dev": "nodemon server/index.ts"
},
"keywords": [
"data",
"typescript",
"next"
],
"author": "lovethebomb",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/enzyme": "^3.1.17",
"@types/jest": "^24.0.0",
"@types/next": "^8.0.0",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-transition-group": "^2.0.15",
"@types/styled-jsx": "^2.2.7",
"@zeit/next-typescript": "^1.1.1",
"acorn": "^6.0.5",
"apicache": "^1.2.3",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-ease": "0.0.1",
"date-fns": "^2.0.0-alpha.27",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"dotenv": "^6.2.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.9.1",
"express": "^4.16.4",
"isomorphic-fetch": "^2.2.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^23.6.0",
"morgan": "^1.9.1",
"next": "^8.0.1",
"npm": "^6.7.0",
"parse-prometheus-text-format": "^1.0.5",
"prom-client": "^11.2.1",
"quake-champions-api": "^1.0.5",
"react": "^16.8.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.8.1",
"react-transition-group": "^2.5.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2",
"typescript-babel-jest": "^1.0.6"
},
"devDependencies": {
"@types/apicache": "^1.2.0",
"eslint": "^5.13.0",
"eslint-config-unsplash": "^0.2.2",
"nodemon": "^1.18.10",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.0"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$",
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/dist/",
"<rootDir>/node_modules/",
"<rootDir>/coverage/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}