-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "@cobaltinc/atelier",
"version": "1.2.0",
"author": "Cobalt. Inc.",
"license": "MIT",
"description": "Drawing on canvas",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"engines": {
"node": ">=14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/cobaltinc/atelier"
},
"scripts": {
"build": "rimraf dist && parcel build",
"clean": "rimraf node_modules dist",
"type-check": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "rimraf dist && parcel build"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@storybook/react": "6.3.12",
"@storybook/storybook-deployer": "^2.8.10",
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.0",
"parcel": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": ">=3.0.0"
},
"contributors": [
{
"name": "Lee Sun-Hyoup",
"email": "[email protected]"
}
]
}