-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "actinium",
"version": "5.0.1",
"author": "Reactium LLC",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"local": "nodemon",
"start": "node ./src/index.js",
"docker": "npm-run-all -s docker:*",
"docker:build": "docker image build -t atomicreactor/actinium:$npm_package_version .",
"docker:push": "docker push atomicreactor/actinium:$npm_package_version",
"docs": "npx reactium docs --verbose -s .core,src/app,actinium_modules,node_modules/@atomic-reactor -d docs",
"heroku-prebuild": "npx reactium install",
"plugin:install": "npx reactium install"
},
"devDependencies": {
"prettier": "^2.8.8"
},
"repository": {
"type": "git",
"url": "https://github.com/Atomic-Reactor/Actinium-2.0"
},
"engines": {
"node": "20.0.0",
"npm": "9.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"actiniumDependencies": {},
"workspaces": [
"actinium_modules/*",
"actinium_modules/@*/*"
]
}