-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "@relate-by-ui/relatable",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neo4j-apps/relatable"
},
"scripts": {
"prepare": "npm run build",
"clean": "rimraf dist coverage",
"build": "npm run clean && tsc && npm run copy-assets",
"copy-assets": "cp -r ./src/assets ./dist/assets",
"watch": "npm run build && tsc -w",
"test": "jest --no-cache --coverage --config jest.config.js",
"dev": "jest --no-cache --config jest.config.js --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"dependencies": {
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.10",
"lodash-es": "4.17.15",
"react-table": "7.0.4",
"semantic-ui-react": "0.88.2"
},
"peerDependencies": {
"@relate-by-ui/css": "^1.0.5",
"react": "16",
"react-dnd": "9",
"react-dnd-html5-backend": "9",
"react-dom": "16"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@relate-by-ui/css": "1.0.5",
"@storybook/addon-actions": "5.3.18",
"@storybook/addon-links": "5.3.18",
"@storybook/addons": "5.3.18",
"@storybook/react": "5.3.18",
"@types/jest": "25.2.1",
"@types/lodash-es": "4.17.3",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/react-table": "7.0.16",
"babel-loader": "8.1.0",
"jest": "25.4.0",
"jest-dom": "3.1.3",
"lorem-ipsum": "2.0.3",
"react-testing-library": "6.0.1",
"rimraf": "2.6.3",
"ts-jest": "25.4.0",
"ts-loader": "7.0.1",
"typescript": "3.4.5"
},
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"access": "public"
}
}