-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.12 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
{
"name": "mvc-tsx",
"version": "0.5.2",
"description": "MVC based on React",
"main": "bundle/mvc-and-deps.min.js",
"types": "lib/index.ts",
"scripts": {
"build": "gulp build",
"build-examples": "gulp build-examples",
"watch": "gulp watch",
"test": "nyc --reporter=html --reporter=text-summary mocha",
"lint": "tslint lib/**/*.ts && tslint lib/**/*.tsx && tslint test/**/*.ts && tslint test/**/*.tsx",
"prepublishOnly": "npm run build"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"reporter": [
"html"
],
"all": true,
"require": [
"ts-node/register",
"source-map-support/register"
],
"exclude": [
"bundle",
"coverage",
"gulp",
"examples",
"deps",
"gulpfile.js",
".mocharc.js",
"lib/index.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eprincev-egor/mvc-tsx.git"
},
"keywords": [
"react",
"mvc",
"tsx",
"typescript",
"model",
"view",
"controller",
"mv*",
"lib",
"frontend"
],
"author": "Eprintsev Egor",
"license": "MIT",
"bugs": {
"url": "https://github.com/eprincev-egor/mvc-tsx/issues"
},
"homepage": "https://github.com/eprincev-egor/mvc-tsx#readme",
"devDependencies": {
"@types/jsdom": "^16.2.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"css-loader": "^3.6.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"jsdom": "^16.2.2",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"source-map-loader": "^1.0.0",
"source-map-support": "^0.5.19",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsc": "^1.20150623.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"vinyl-named": "^1.1.0",
"webpack": "^4.43.0",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}