-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.64 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
{
"name": "Reactium-UI-and-Toolkit",
"version": "5.0.6",
"description": "A framework for creating React + Redux apps using the domain driven design (DDD) paradigm.",
"main": "index.js",
"scripts": {
"heroku-prebuild": "npx reactium install",
"local": "gulp local",
"clean": "gulp clean",
"start": "node src/index.mjs",
"build": "cross-env NODE_ENV=production gulp"
},
"keywords": [
"react",
"redux",
"framework",
"javascript",
"ddd"
],
"author": "Cam Tullos <cam@tullos.ninja> (http://cam.tullos.ninja) and John Dillick <john@dillick.us>",
"license": "MIT",
"engines": {
"node": "18.x",
"npm": "9.x"
},
"repository": {
"type": "git",
"url": "https://github.com/Atomic-Reactor/Reactium.git"
},
"browser": {
"parse/node": false
},
"dependencies": {
"react": "^18.2.0"
},
"nodemonConfig": {
"quite": true,
"watch": [
"src/manifest.js"
],
"ignore": [
"src/app/*",
".tmp/"
]
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"reactiumDependencies": {
"@atomic-reactor/reactium-api": "5.0.3",
"@atomic-reactor/reactium-capability": "5.0.1",
"@atomic-reactor/reactium-role": "5.0.1",
"@atomic-reactor/reactium-user": "5.0.1",
"@atomic-reactor/reactium-setting": "5.0.1",
"@atomic-reactor/reactium-svg": "0.0.3",
"@atomic-reactor/reactium-core": "5.0.19"
},
"workspaces": [
"reactium_modules/*",
"reactium_modules/@*/*"
],
"devDependencies": {
"prettier": "^2.8.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}