-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "@hmudesign/hedra",
"version": "0.8.0",
"description": "A React component library for working with three.js.",
"author": "Christopher Baker <christopher@hmudesign.com>",
"license": "MIT",
"homepage": "https://github.com/HMUDesign/hedra#readme",
"bugs": {
"url": "https://github.com/HMUDesign/hedra/issues"
},
"scripts": {
"eslint": "eslint .",
"depcheck": "depcheck --ignores=@storybook/*,@hmudesign/hedra",
"storybook": "start-storybook -p 3000",
"clean": "rm -rf lib",
"build": "npm run clean && NODE_ENV=production babel --source-maps --copy-files src --out-dir lib",
"dev": "npm run clean && NODE_ENV=development babel --source-maps --copy-files src --out-dir lib --watch",
"docs": "npm run build && build-storybook -o public && gh-pages -m 'Updates [ci skip]' -d public",
"release:major": "npm version major && git push && git push --tags && npm publish",
"release:minor": "npm version minor && git push && git push --tags && npm publish",
"release:patch": "npm version patch && git push && git push --tags && npm publish",
"release:pre": "npm version prerelease && git push && git push --tags && npm publish --tag=pre",
"prepare": "npm run build"
},
"eslintConfig": {
"root": true,
"extends": "@hmudesign/eslint-config",
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"@hmudesign/hedra",
"@tweenjs/tween.js",
"prop-types",
"react",
"three"
]
}
]
}
},
"main": "lib/hedra.js",
"exports": {
".": "./lib/hedra.js",
"./premade": "./lib/premade/index.js",
"./develop": "./lib/develop.js"
},
"peerDepedencies": {
"@tweenjs/tween.js": "^18.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"three": ">=0.118.0"
},
"dependencies": {
"stats.js": "^0.17.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.11.0",
"@hmudesign/eslint-config": "^1.0.2",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@tweenjs/tween.js": "^18.6.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"depcheck": "^1.0.0",
"eslint": "^7.6.0",
"gh-pages": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"three": "^0.119.1"
}
}