-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 4.73 KB
/
Copy pathpackage.json
File metadata and controls
164 lines (164 loc) · 4.73 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "onefx",
"license": "MIT",
"version": "2.6.8",
"description": "OneFx Web Server that empowers the full-stack development.",
"files": [
"lib",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "npm run cover",
"check-coverage": "nyc check-coverage --lines 65 --functions 60 --Statements 65",
"ava": "NODE_ENV=test ava",
"server": "node server",
"lint": "pretty-quick --staged && eslint src --fix --ext .js,.tsx,.ts --quiet",
"qualitycheck": "npm-run-all typecheck",
"cover": "tsc && NODE_ENV=test npm run lint && nyc npm run ava",
"size": "ls -lh lib/",
"bp": "npm run build && npm run size",
"build": "npm run build:js && npm run build:types",
"build:js": "rm -rf ./lib && babel src/ --source-maps inline --extensions \".ts,.tsx,.js,.jsx\" --ignore **/__test__/**,src/**/**.test.ts -d lib",
"build:watch": "babel --watch src/**/*.ts -d lib",
"build:types": "tsc --emitDeclarationOnly"
},
"bin": {
"onefx-format-translations": "./lib/scripts/format-translations.js"
},
"nyc": {
"include": [
"src/**/*.ts*"
],
"exclude": [
"src/**/*.test.ts*",
"src/**/__tests__/**"
],
"reporter": [
"lcov",
"text",
"text-summary",
"cobertura"
],
"extension": [
".tsx",
".ts"
],
"cache": true,
"temp-directory": "./coverage/.nyc_output"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/puncsky/onefx.git"
},
"keywords": [],
"author": "Tian Pan (puncsky@gmail.com)",
"bugs": {
"url": "https://github.com/puncsky/onefx/issues"
},
"homepage": "https://github.com/puncsky/onefx#readme",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/register": "7.12.10",
"@puncsky/eslint-config-onefx": "^2.6.6",
"@puncsky/eslint-config-onefx-react": "^2.6.4",
"@types/deep-extend": "0.4.31",
"@types/dottie": "2.0.3",
"@types/json-stringify-safe": "5.0.0",
"@types/koa-bodyparser": "4.3.0",
"@types/koa-csrf": "3.0.1",
"@types/koa-helmet": "5.2.0",
"@types/koa-router": "7.4.1",
"@types/koa-send": "4.1.2",
"@types/koa-session": "5.10.2",
"@types/methods": "1.1.1",
"@types/node": "14.0.18",
"@types/react-dom": "16.9.8",
"@types/react-helmet": "6.0.0",
"@types/react-redux": "7.1.16",
"@types/react-router": "5.1.8",
"@types/react-router-dom": "5.1.5",
"@types/styletron-engine-atomic": "1.1.0",
"@types/styletron-react": "5.0.2",
"@types/styletron-standard": "2.0.1",
"@types/uuid": "8.0.0",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"ava": "3.10.0",
"babel-loader": "8.2.2",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-react-require": "3.1.3",
"eslint": "7.9.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"global": "4.4.0",
"graphql": "^15.3.0",
"husky": "4.3.6",
"nyc": "15.1.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-redux": "7.2.4",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"styletron-engine-atomic": "1.4.6",
"styletron-react": "5.2.7",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"peerDependencies": {
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-redux": "7.2.4",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"styletron-engine-atomic": "1.4.6",
"styletron-react": "5.2.7"
},
"dependencies": {
"deep-extend": "0.6.0",
"dotenv": "8.2.0",
"dottie": "latest",
"global": "4.4.0",
"is-browser": "2.1.0",
"js-yaml": "3.14.0",
"json-stringify-safe": "5.0.1",
"koa": "2.13.0",
"koa-bodyparser": "4.3.0",
"koa-csrf": "3.0.8",
"koa-helmet": "5.2.0",
"koa-i18n": "2.1.0",
"koa-locale": "1.3.0",
"koa-router": "9.1.0",
"koa-send": "5.0.0",
"koa-session": "6.0.0",
"koa2-ratelimit": "0.9.0",
"load-script": "1.0.0",
"methods": "1.1.2",
"safe-json-globals": "2.1.0",
"styletron-standard": "^3.0.4",
"uuid": "8.2.0",
"winston": "3.3.3"
}
}