This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
107 lines (107 loc) · 3.74 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
104
105
106
107
{
"name": "bosket-root",
"version": "0.4.4",
"private": true,
"description": "A collection of tree views.",
"main": "index.js",
"author": "Julien Elbaz",
"license": "MIT",
"repository": "https://github.com/elbywan/bosket",
"subPackages": [
"build/tools",
"build/core",
"build/angular",
"build/react",
"build/riot",
"build/vue"
],
"scripts": {
"start": "npm run build && npm run build-docs",
"prebuild": "npm run clean && eslint --ext .js --ext .tag . && flow",
"build": "npm run build-js && npm run build-ts && npm run bundle",
"postbuild": "flow stop",
"build-js": "babel src -d build -s && flow gen-flow-files --out-dir build src",
"build-ts": "ngc -p src/angular/tsconfig.json && cd src && copyfiles \"./**/*.d.ts\" ../build",
"bundle": "webpack --progress --colors --config config/webpack.config.js -p && npm run bundle-templates",
"bundle-templates": "scripts/bundle-hbs.js",
"build-docs": "npm install build/core build/tools build/angular --no-save && webpack -p --progress --colors --config docs/webpack.config.js",
"dev-server": "webpack-dev-server --config docs/webpack.config.dev.js",
"clean": "rimraf build/{angular,core,react,vue,riot,tools} && rimraf **/.DS_Store",
"flow-coverage-report": "flow-coverage-report -i 'src/**/*.js' --threshold 70",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"publishall": "subpkg publish"
},
"files": [
"build",
"index.js"
],
"dependencies": {},
"devDependencies": {
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/compiler-cli": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/router": "^5.2.9",
"@ngtools/webpack": "^1.10.2",
"@types/node": "^9.6.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-riot": "^1.1.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"conventional-changelog-cli": "^1.3.21",
"copyfiles": "^2.0.0",
"core-js": "^2.5.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-riot": "^0.1.7",
"extract-text-webpack-plugin": "^3.0.2",
"flow-bin": "^0.69.0",
"flow-coverage-report": "^0.5.0",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"postcss-nesting": "^4.2.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-hot-loader": "next",
"react-transition-group": "1.x",
"rimraf": "^2.6.2",
"riot": "^3.9.1",
"riot-hot-reload": "^1.0.0",
"riot-tag-loader": "^2.0.2",
"rxjs": "^5.5.10",
"sanitize-html": "^1.18.2",
"style-loader": "^0.19.1",
"subpackage": "^1.1.0",
"ts-loader": "^3.2.0",
"typescript": "^2.8.1",
"vue": "^2.5.16",
"vue-loader": "^13.6.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.10.0",
"webpack-angular-externals": "^1.0.2",
"webpack-dev-server": "^2.9.7",
"whatwg-fetch": "^2.0.4",
"zone.js": "^0.8.26"
}
}