-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1013 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1013 Bytes
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
{
"name": "light-code-editor",
"version": "1.0.6",
"repository": {
"url": "https://github.com/zhDmitry/light-code-editor",
"type": "github"
},
"main": "./build/index.js",
"module": "./build/index.js",
"files": [
"build/**",
"src/**",
"styles.css",
"package.json",
"README.md",
"types.d.ts"
],
"author": {
"email": "kraken@live.ru",
"name": "Dmitry",
"url": "zhd.js.org"
},
"types": "./types.d.ts",
"devDependencies": {
"@babel/core": "^7.1.5",
"@storybook/addon-actions": "^4.0.4",
"@storybook/addon-links": "^4.0.4",
"@storybook/addons": "^4.0.4",
"@storybook/react": "^4.0.4",
"babel-loader": "^8.0.4",
"typescript": "^3.1.6",
"gh-pages": "^2.0.1",
"react": "^16.6.1",
"react-dom": "^16.6.1"
},
"dependencies": {
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "tsc --build",
"deploy": "gh-pages -d storybook-static"
}
}