This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.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
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
{
"name": "@ws/fe-skeleton",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build src && ttsc --project tsconfig.server.json",
"dev": "nodemon --inspect",
"format": "prettier-eslint --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "eslint --ext ts,tsx src --fix",
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"test": "jest"
},
"eslintIgnore": [
"node_modules"
],
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"{src,test}/**/*.{ts,tsx}": [
"eslint"
],
"src/**/*.less": [
"stylelint"
]
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@lingui/babel-plugin-transform-js": "^2.8.3",
"@lingui/babel-preset-react": "^2.8.3",
"@lingui/react": "^2.8.3",
"@types/config": "0.0.34",
"@types/koa": "^2.0.50",
"@types/koa-helmet": "^3.1.2",
"@zeit/next-less": "^1.0.1",
"@zerollup/ts-transform-paths": "^1.7.3",
"antd": "^3.23.4",
"axios": "^0.19.0",
"config": "^3.2.2",
"cookies-js": "^1.2.3",
"koa": "^2.8.1",
"koa-helmet": "^5.1.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.15",
"next": "9.0.6",
"next-redux-wrapper": "^4.0.0",
"next-routes": "^1.4.2",
"null-loader": "^3.0.0",
"pseudolocale": "^1.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-redux": "^7.1.1",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"tsconfig-paths-webpack-plugin": "^3.2.0"
},
"devDependencies": {
"@lingui/cli": "^2.8.3",
"@lingui/loader": "^2.8.3",
"@lingui/macro": "^2.8.3",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/lingui__core": "^2.7.0",
"@types/lingui__macro": "^2.7.3",
"@types/lingui__react": "^2.8.1",
"@types/lodash": "^4.14.139",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^12.7.9",
"@types/react": "^16.9.3",
"@types/react-redux": "^7.1.3",
"@types/recompose": "^0.30.7",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"cross-env": "^6.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-sort-destructure-keys": "^1.3.3",
"jest": "^24.9.0",
"less": "^3.10.3",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.7",
"typescript": "^3.6.3"
}
}