-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
{
"name": "project-p-next",
"version": "0.1.0",
"private": true,
"scripts": {
"config:init": "tjuna-config init",
"config:update": "tjuna-config update",
"dev": "next dev -- -p 1337",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
"test": "NODE_ENV=test jest . --runInBand",
"test:coverage": "NODE_ENV=test jest . --coverage",
"deploy": "next build && next export && firebase deploy"
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"chart.js": "^2.8.0",
"dotenv": "^8.1.0",
"fibers": "^4.0.1",
"next": "9.0.5",
"next-progressbar": "^1.0.0",
"react": "16.9.0",
"react-chartjs-2": "^2.7.6",
"react-dom": "16.9.0",
"sass": "^1.22.12",
"sass-loader": "^8.0.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"@testing-library/react-hooks": "^2.0.1",
"@tjuna/config": "^3.0.0-rc.17",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"@zeit/next-typescript": "^1.1.1",
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}