forked from andrico1234/beautiful-skill-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.66 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "beautiful-skill-tree",
"version": "1.7.1",
"homepage": "https://github.com/andrico1234/beautiful-skill-tree",
"repository": "andrico1234/beautiful-skill-tree",
"main": "dist/index.js",
"module": "dist/skill-tree-package.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "yarn build && source-map-explorer ./dist/*.js",
"release": "yarn build && npm publish",
"start": "tsdx watch",
"build": "tsdx build",
"test": "echo 'removed default test' ",
"alt-test": "tsdx test --env=jsdom",
"test:watch": "tsdx test --env=jsdom --watchAll",
"test:ci": "yarn alt-test --coverage --no-watch --watch=false --watchAll=false --no-watchman --forceExit --detectOpenHandles",
"pre-commit": "pretty-quick --staged && yarn test:ci && yarn build"
},
"peerDependencies": {
"react": ">=16",
"styled-components": ">=5"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.ts"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/file-mock.js"
},
"testMatch": [
"<rootDir>src/**/__tests__/*.{ts,tsx}"
],
"collectCoverageFrom": [
"./src/App.tsx",
"./src/components/**/*.{ts,tsx}",
"./src/context/**/*.${ts,tsx}",
"./src/helpers/**/*.${ts,tsx}"
]
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@rollup/plugin-image": "^2.0.4",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"@types/uuid": "^7.0.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-styled-components": "^1.10.6",
"cssnano": "^4.1.10",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest-styled-components": "^7.0.0-beta.1",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"source-map-explorer": "^2.0.1",
"tsdx": "^0.12.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@tippy.js/react": "^3.1.1",
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"styled-components": "5.0.1",
"uuid": "^7.0.1"
}
}