-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.13 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
{
"name": "ats-fe",
"version": "0.0.1",
"description": "Alien Typer Shit: Frontend",
"private": false,
"scripts": {
"analyze": "BUNDLE_ANALYZE=both yarn build",
"build": "next build src && rimraf build && tsc --project tsconfig.server.json && cp -r src/static build/static",
"export": "next export src",
"dev": "nodemon src/server.ts",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "eslint --fix \"src/**\"",
"fix:prettier": "prettier --write --ignore-path .gitignore \"**/*.{css,js,json,md,ts,tsx,yml}\"",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:tsc",
"lint:eslint": "eslint \"src/**\"",
"lint:prettier": "prettier --check --ignore-path .gitignore \"**/*.{css,js,json,md,ts,tsx,yml}\"",
"lint:tsc": "tsc --project .",
"start": "NODE_ENV=production node build/server.js"
},
"engines": {
"node": ">=10.0.0",
"yarn": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{css,js,json,md,ts,tsx,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"apollo-boost": "^0.1.28",
"apollo-client-preset": "^1.0.8",
"apollo-link-persisted-queries": "^0.2.2",
"compression": "^1.7.3",
"envalid": "^4.2.2",
"express": "^4.16.4",
"formik": "^1.5.1",
"full-icu": "^1.2.1",
"glob": "^7.1.3",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"isomorphic-fetch": "^2.2.1",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"next": "^8.0.3",
"next-cookies": "^1.1.2",
"next-routes": "^1.4.2",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"polished": "^3.2.0",
"react": "^16.8.3",
"react-apollo": "^2.4.1",
"react-dom": "^16.8.3",
"react-github-btn": "^1.0.5",
"react-router-dom": "^5.0.0",
"styled-components": "^4.1.3",
"styled-system": "^4.0.8"
},
"devDependencies": {
"@types/lodash": "^4.14.121",
"@types/next": "^8.0.1",
"@types/nprogress": "^0.0.29",
"@types/react": "^16.8.4",
"@types/styled-components": "^4.1.10",
"@types/styled-system": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^1.4.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-graphql-tag": "^2.0.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.2.0",
"eslint-plugin-simple-import-sort": "^3.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"module-resolver": "^1.0.0",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.12.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333"
}
}