-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 2.03 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
{
"name": "heleonix",
"description": "Strict and declarative MVVM framework for web sites and web applications.",
"author": "Heleonix - Hennadii Lutsyshyn",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm-run-all --parallel start:*",
"start:libs": "lerna exec --scope \"@heleonix/core\" -- rollup --watch --config ../../rollup.config.js",
"start:sandbox": "lerna exec --scope \"@heleonix/sandbox\" -- webpack-dev-server --config=../../webpack.config.js --mode=development",
"test": "nyc jasmine JASMINE_CONFIG_PATH=jasmine.json --nycrc-path=./.nycrc",
"build": "lerna exec --scope \"@heleonix/core\" -- rollup --config ../../rollup.config.js",
"postinstall": "lerna bootstrap --hoist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.3.0",
"husky": "4.2.5",
"jasmine": "3.5.0",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "^2.0.5",
"rollup": "2.21.0",
"rollup-plugin-terser": "6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"source-map-loader": "^1.1.0",
"ts-loader": "^8.0.3",
"typescript": "^3.9.7",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}