-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.33 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.33 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
{
"name": "omni-door-site",
"version": "0.0.13",
"scripts": {
"dev": "omni dev",
"start": "omni start",
"lint": "npm run lint:prettier && npm run lint:es && npm run lint:style",
"lint:fix": "npm run lint:prettier_fix && npm run lint:es_fix && npm run lint:style_fix",
"lint:es": "eslint --ext .ts --ext .tsx src/ pages/",
"lint:es_fix": "eslint --ext .ts --ext .tsx --fix src/ pages/",
"lint:prettier": "prettier --check src/ pages/",
"lint:prettier_fix": "prettier --write src/ pages/",
"lint:style": "stylelint src/**/*.{css,less,scss,sass} --allow-empty-input",
"lint:style_fix": "stylelint src/**/*.{css,less,scss,sass} --fix --allow-empty-input",
"lint:commit": "commitlint -e $HUSKY_GIT_PARAMS",
"new": "omni new",
"build": "omni build",
"release": "omni build && omni release && npm run deploy",
"setup": "pm2 deploy ecosystem.config.js production setup",
"deploy": "pm2 deploy ecosystem.config.js production",
"reload": "pm2 reload ecosystem.config.js production"
},
"dependencies": {
"@mdx-js/loader": "^1.6.16",
"@next/mdx": "^9.5.2",
"antd": "^4.5.2",
"classnames": "^2.2.6",
"http-proxy-middleware": "^1.0.5",
"ip": "^1.1.5",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^9.1.0",
"koa-static": "^5.0.0",
"koa2-connect": "^1.0.2",
"next": "^11.1.0",
"next-compose-plugins": "^2.2.0",
"next-transpile-modules": "^4.0.2",
"next-url-prettifier": "^1.4.0",
"path-to-regexp": "^6.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack-merge": "4.2.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.10.5",
"@next/bundle-analyzer": "^9.5.1",
"@omni-door/cli": "^2.4.3",
"@types/classnames": "^2.2.10",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-plugin-import": "^1.13.0",
"del": "^5.1.0",
"detect-port": "^1.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"less": "^3.12.2",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^10.2.11",
"null-loader": "^4.0.0",
"open": "^7.1.0",
"pm2": "^4.4.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.0.5",
"sass": "^1.26.10",
"stylelint": "^13.6.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"eslintConfig": {
"extends": "./configs/.eslintrc.js"
},
"prettier": "./configs/prettier.config.js",
"stylelint": {
"extends": "./configs/stylelint.config.js"
},
"commitlint": {
"extends": [
"./configs/commitlint.config.js"
]
},
"omni": {
"filePath": "./configs/omni.config.js"
}
}