forked from VoliJS/React-Type-R
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "react-mvx",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/gaperton/React-MVx.git"
},
"description": "React MV* framework",
"main": "./dist/index.js",
"module": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"files": [
"dist",
"lib",
"tags.jsx",
"tags.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pull": "git submodule update --remote && cp ./submodules/NestedLink/tags.* . && cp ./submodules/NestedLink/src/* ./src/valuelink",
"compile": "./node_modules/.bin/tsc && ./node_modules/.bin/webpack -p",
"deploy": "cp -R ./dist ./examples/*/node_modules/react-mvx",
"build": "npm run pull && npm run compile",
"docs": "~/.composer/vendor/bin/daux --source=docsource --destination=docs"
},
"keywords": [
"react",
"mvc",
"model",
"state",
"mvvm"
],
"author": "Vlad Balin",
"license": "MIT",
"devDependencies": {
"@types/prop-types": "*",
"@types/react": "*",
"daux-api-docs-theme": "^1.0.0",
"handlebars": "^3.0.3",
"highlight.js": "^8.7.0",
"marked": "^0.3.5",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"source-map-loader": "*",
"ts-loader": "*",
"type-r": "^1.0.0-rc6",
"typescript": "*",
"webpack": "*"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"type-r": "^1.0.0-rc6"
}
}