-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.65 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
{
"name": "reactium-core-project",
"version": "6.1.5",
"description": "A framework for creating React + Redux apps using the domain driven design (DDD) paradigm.",
"main": "index.js",
"scripts": {
"start": "node src/index.mjs",
"build": "cross-env NODE_ENV=production gulp",
"heroku-prebuild": "npx reactium install",
"static": "npm-run-all build:* && gulp static",
"local": "gulp local",
"clean": "gulp clean"
},
"keywords": [
"react",
"redux",
"framework",
"javascript",
"ddd"
],
"author": "Cam Tullos <[email protected]> (http://cam.tullos.ninja) and John Dillick <[email protected]>",
"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,jsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"reactiumDependencies": {
"@atomic-reactor/reactium-api": "6.1.0",
"@atomic-reactor/reactium-capability": "6.0.0",
"@atomic-reactor/reactium-role": "5.0.1",
"@atomic-reactor/reactium-user": "6.1.0",
"@atomic-reactor/reactium-setting": "5.0.1",
"@atomic-reactor/reactium-svg": "0.0.3",
"@atomic-reactor/reactium-core": "6.2.6"
},
"workspaces": [
"reactium_modules/*",
"reactium_modules/@*/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}