-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.49 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": "relate-by-ui",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neo4j-apps/relate-by-ui"
},
"scripts": {
"lerna-init": "lerna link && lerna bootstrap && lerna run build",
"build": "tsc",
"styleguide:build": "git checkout gh-pages && cd styleguide && yarn build:storybook",
"styleguide:publish": "npm run styleguide-build && ./bin/gh-pages styleguide/storybook-static",
"watch": "lerna run watch --stream --parallel",
"format": "prettier --write \"packages/**/*.ts\" \"packages/**/*.tsx\" \"packages/**/*.js\" \"packages/**/*.jsx\"",
"lint": "tslint --project tsconfig.json",
"publish:all": "lerna run test && lerna run build && npm run publish:prepare && lerna publish && rm -rf .npmrc",
"publish:prepare": "echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc",
"verify": "lerna run test && lerna run build"
},
"dependencies": {
"react": "^16.8.4",
"semantic-ui-react": "^0.86.0"
},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "^11.9.4",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"jest": "^24.1.0",
"lerna": "^3.13.0",
"lodash": "^4.17.15",
"prettier": "^1.15.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-testing-library": "^6.0.1",
"ts-jest": "^24.0.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.3.3"
},
"publishConfig": {
"access": "public"
}
}