-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 959 Bytes
/
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
{
"name": "@helpusersvote/modules",
"private": true,
"devDependencies": {
"ava": "^1.3.1",
"lerna": "^3.13.1"
},
"scripts": {
"docs-clean": "rm -rf docs",
"docs-build": "cd packages/helpusersvote-react-docs && npm run build-storybook",
"docs-copy": "cd packages/helpusersvote-react-docs && mv dist ../../docs",
"docs": "npm run docs-build && npm run docs-clean && npm run docs-copy",
"begin": "npm run clean && npm run install-pkgs",
"install-pkgs": "lerna exec npm install",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"patch": "lerna version patch",
"minor": "lerna version minor",
"version": "lerna version",
"test": "lerna run test",
"clean": "lerna clean --yes"
},
"dependencies": {
"acorn": "^8.0.1",
"elliptic": "^6.5.3",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.20",
"lodash.merge": "^4.6.2",
"mixin-deep": "^2.0.1"
}
}