-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
117 lines (117 loc) · 4.2 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "my-nextjs-typescript-boilerplate",
"version": "0.0.3",
"description": "Modern ReactJS/express full-stack boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/BjornMelgaard/my-nextjs-typescript-boilerplate.git"
},
"engines": {
"node": ">=7.6.0",
"npm": ">=4"
},
"author": "Sergey Homa",
"license": "MIT",
"scripts": {
"clean": "rm -rfd build",
"predev": "yarn run clean",
"dev": "cross-env NODE_ENV=development concurrently \"yarn dev:ts\" \"yarn dev:watch_app_assets\" \"sleep 2 && yarn dev:next\"",
"dev:debug": "cross-env NODE_ENV=development concurrently \"yarn dev:ts\" \"yarn dev:watch_app_assets\" \"sleep 2 && yarn dev:next:debug\"",
"dev:ts": "tsc --watch",
"dev:next": "node bin/server.js",
"dev:next:debug": "node --inspect bin/server.js",
"dev:watch_app_assets": "yarn run copy_app_assets --watch",
"copy_app_assets": "cpx \"app/**/*.{less,ico,png,graphql}\" build",
"show-bundle-analysis": "webpack-bundle-analyzer ./build/.next/stats.json",
"test": "cross-env NODE_ENV=test jest --coverage",
"precommit": "yarn run format && git add --all && yarn run lint",
"lint": "tslint --type-check -c tslint.json -p tsconfig.json '{app}/**/*.{ts,tsx}'",
"lint:watch": "chokidar '{app}/**/*.{ts,tsx}' -c \"yarn run lint\" --initial",
"format": "prettier --config './.prettierrc.yaml' --ignore-path './.prettierignore' --write './**/*.{js,jsx,ts,tsx,graphql,gql,json}'",
"graphql:update_schema": "graphql get-schema",
"graphql:update_types": "gql-gen --file schema.json --template typescript --out ./app/graphql.ts \"./app/**/*.graphql\"",
"graphql:play": "graphql playground",
"graphql:see_graph": "graphql voyager"
},
"dependencies": {
"antd": "^2.13.2",
"http": "^0.0.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.4",
"next": "^4.0.0",
"next-routes": "^1.0.40",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"ramda": "^0.24.1",
"ramda-adjunct": "^1.17.0",
"ramda-asserters": "^0.0.11",
"ramda-universal-trace": "^0.0.2",
"react": "^15.6.1",
"react-apollo": "^1.4.15",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"recompose": "^0.25.0",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"styled-components": "^2.1.3-0",
"typescript-fsa": "^2.5.0",
"typescript-fsa-reducers": "^0.4.4"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.34",
"@types/js-cookie": "^2.1.0",
"@types/next": "^2.4.2",
"@types/ramda": "https://github.com/types/npm-ramda#dist",
"@types/react": "^16.0.5",
"@types/react-redux": "^5.0.6",
"@types/recompose": "^0.24.1",
"apollo-codegen": "^0.18.0",
"autoprefixer": "^7.1.4",
"babel-plugin-inline-import-graphql-ast": "^2.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-ramda": "^1.4.3",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-imports": "^1.4.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"body-parser": "^1.18.1",
"chokidar": "^1.7.0",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.5.0",
"cpx": "^1.5.0",
"cross-env": "^5.0.5",
"enzyme": "^2.9.1",
"express": "^4.15.4",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"graphql-cli": "^1.0.1",
"graphql-cli-voyager": "^0.1.2",
"graphql-code-generator": "^0.8.10",
"husky": "^0.14.3",
"image-webpack-loader": "^3.4.1",
"jest": "^21.1.0",
"jest-cli": "^21.1.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"lint-staged": "^4.2.1",
"nodemon": "^1.12.1",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.0.6",
"prettier": "^1.7.0",
"raw-loader": "^0.5.1",
"react-test-renderer": "^15.6.1",
"redux-devtools-extension": "^2.13.2",
"rimraf": "^2.6.2",
"ts-jest": "^21.0.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-config-standard": "^6.0.1",
"tslint-consistent-codestyle": "^1.6.0",
"tslint-immutable": "^4.2.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2",
"url-loader": "^0.5.9",
"webpack-bundle-analyzer": "^2.9.0"
}
}