-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "app",
"version": "0.0.2",
"description": "umajs-react-ssr",
"author": "dazjean",
"license": "ISC",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"index.d.ts"
],
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Umajs/Uma.git"
},
"scripts": {
"fix:src": "npx eslint src --fix --ext .ts",
"fix:web": "npx eslint web --fix --ext .tsx",
"start": "ts-node-dev --respawn src/app.ts",
"build": "tsc && srejs build",
"fix": "npm run fix:src && npm run fix:web",
"postinstall": "npm run fix && npm run build",
"preprod": "npm run build",
"prod": "node app/app.js --production"
},
"dependencies": {
"@umajs/arg-decorator": "^2.0.5",
"@umajs/core": "^2.0.5",
"@umajs/plugin-logger": "^0.1.1",
"@umajs/plugin-react-ssr": "^2.0.0",
"@umajs/plugin-views": "^2.0.5",
"@umajs/router": "^2.0.5",
"koa": "^2.11.0",
"nunjucks": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3"
}
}