-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
{
"name": "mobrix-engine",
"version": "1.0.0",
"description": "A tiny and powerful engine to extend your app with a lot of functionalities",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"config/rollup.build.config.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CianciarusoCataldo/mobrix-engine.git"
},
"keywords": [
"tools",
"redux",
"redux-tools",
"redux-store"
],
"author": "Cataldo Cianciaruso",
"license": "MIT",
"bugs": {
"url": "https://github.com/CianciarusoCataldo/mobrix-engine/issues"
},
"homepage": "https://github.com/CianciarusoCataldo/mobrix-engine#readme",
"peerDependencies": {
"@reduxjs/toolkit": "^1.8.3",
"mobrix-engine-tools": "^1.0.3",
"mobrix-utils": "^1.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@reduxjs/toolkit": "^1.8.3",
"@types/history": "^4.7.8",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.17",
"babel-jest": "^27.4.6",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"enzyme": "^3.11.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.7",
"jest-transform-stub": "^2.0.0",
"mobrix-engine-tools": "^1.0.3",
"mobrix-utils": "^1.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.44.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.2"
},
"scripts": {
"build": "rollup -c ./config/rollup.build.config.js",
"build-dev": "rollup -c ./config/rollup.dev.config.js",
"analyze": "rollup -c ./config/rollup.analyze.config.js",
"build-watch": "rollup -c ./config/rollup.dev.config.js -w",
"watch": "chokidar \"src/**/*.css\" \"src/**/*.tsx\" \"src/**/*.ts\" -c \"npm run build-dev\"",
"check-types": "tsc",
"prestart": "npm run build-dev",
"start": "npm-run-all --parallel \"watch\" \"start-playground\"",
"init": "npm i && cd playground && npm i",
"start-playground": "cd playground && npm run start",
"build-playground": "cd playground && npm run build",
"predeploy": "sh ./scripts/pre-deploy.sh",
"deploy": "sh ./scripts/deploy.sh",
"test": "sh ./scripts/start-tests.sh"
}
}