This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.25 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
{
"name": "democracyadmin",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"dev": "nodemon server/index.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node .next/production-server/index.js",
"lint": "tslint --project tsconfig.json && yarn typecheck",
"typecheck": "tsc --noEmit",
"pre-commit": "yarn lint && yarn typecheck",
"schema:download": "apollo schema:download --endpoint=http://localhost:3000/graphql",
"codegen:generate": "apollo codegen:generate --queries='./controller/**/*.tsx' --schema=./schema.json --target=typescript --outputFlat ./controller/schemaTypes.ts",
"gen:types": "npm run schema:download && npm run codegen:generate"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "1.1.1",
"apollo-boost": "^0.1.16",
"basic-auth-connect": "^1.0.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-basic-auth": "^1.1.5",
"file-loader": "^2.0.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.1",
"next-compose-plugins": "^2.1.1",
"next-plugin-transpile-modules": "^0.1.2",
"next-url-prettifier": "^1.4.0",
"npm-basic-auth-connect": "types/npm-basic-auth-connect",
"react": "^16.0.0",
"react-apollo": "^2.2.4",
"react-dom": "^16.0.0",
"request": "^2.88.0",
"semantic-ui-css": "^2.4.0",
"semantic-ui-react": "^0.83.0",
"styled-components": "^4.0.0",
"typescript": "^3.1.3",
"typescript-babel-jest": "^1.0.5",
"url-loader": "^1.1.2"
},
"devDependencies": {
"@types/next": "^7.0.0",
"@types/react": "^16.0.36",
"@types/styled-components": "^4.0.1",
"babel-plugin-styled-components": "^1.8.0",
"nodemon": "^1.17.5",
"prettier": "^1.14.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.0"
}
}