-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "creative-experiments",
"description": "🎨 Creative experiments with Three.js and P5.js.",
"author": "Guillaume CATEL <[email protected]> (https://guillaumecatel.com)",
"license": "MIT",
"private": true,
"homepage": "http://guillaumecatel.github.io/creative-experiments",
"repository": {
"type": "git",
"url": "git+https://github.com/guillaumecatel/creative-experiments.git"
},
"bugs": {
"url": "https://github.com/guillaumecatel/creative-experiments/issues"
},
"scripts": {
"prepare": "husky install",
"preinstall": "npx -y only-allow pnpm",
"dev": "storybook dev -p 6006",
"deploy:storybook": "gh-pages -d storybook-static",
"lint": "pnpm eslint && pnpm stylelint",
"lint:fix": "pnpm eslint --fix && pnpm stylelint --fix",
"eslint": "eslint .",
"eslint:fix": "pnpm eslint . --fix",
"stylelint": "stylelint '**/*.{css,scss}' --aei",
"stylelint:fix": "pnpm stylelint --fix",
"cz": "git-cz",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:security": "pnpm audit --audit-level=high",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"dependencies": {
"@react-three/drei": "^9.64.0",
"@react-three/fiber": "^8.12.0",
"p5": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shader-park-core": "^0.1.41",
"three": "^0.151.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/cz-commitlint": "^17.5.0",
"@guillaumecatel/commitlint-config": "^0.1.1",
"@guillaumecatel/eslint-config": "^0.1.1",
"@guillaumecatel/eslint-config-react": "^0.1.1",
"@guillaumecatel/prettier-config": "^0.1.1",
"@guillaumecatel/stylelint-config": "^0.1.1",
"@guillaumecatel/stylelint-config-scss": "^0.1.1",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-webpack5": "^7.0.2",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/node": "^18.15.11",
"@types/p5": "^1.6.0",
"@types/react": "^18.0.34",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.150.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"eslint": "^8.38.0",
"eslint-plugin-storybook": "^0.6.11",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"storybook": "^7.0.2",
"stylelint": "^15.4.0",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": ">= 16.1.0",
"pnpm": ">= 6.9.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"babel-loader",
"inquirer",
"webpack"
],
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
},
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"minimist@<=1.2.5": ">=1.2.6",
"glob-parent@<5.1.2": ">=5.1.2",
"trim-newlines@<3.0.1": ">=3.0.1",
"decode-uri-component@<0.2.1": ">=0.2.1",
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2"
}
}
}