-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.34 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
{
"name": "swm-grid",
"version": "0.0.4",
"description": "SWM Grid",
"main": "dist/index.js",
"jsnext:main": "esnext/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"pre:build": "rimraf build && copy package.json ./build",
"build:main": "tsc --outDir ./build/dist --declarationDir ./build/typings",
"build:es": "tsc --target esnext --outDir ./build/esnext --declaration false",
"build": "yarn run pre:build && yarn run build:main && yarn run build:es",
"dist": "cd build && npm publish",
"storybook": "start-storybook -p 9001 -c storybook",
"build-storybook": "build-storybook -c storybook",
"deploy-storybook": "storybook-to-ghpages",
"test": "jest --config ./jest.config.json"
},
"repository": "https://github.com/luke-john/swm-grid.git",
"author": "Luke John <[email protected]>",
"license": "MIT",
"peerDependencies": {
"glamor": "^2.20.25",
"glamorous": "^3.21.0",
"react": "^15.5.4"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-knobs": "^3.2.8",
"@storybook/addon-links": "^3.2.6",
"@storybook/addon-notes": "^3.2.7",
"@storybook/react": "^3.2.8",
"@storybook/storybook-deployer": "^2.0.0",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.26",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/storybook__addon-knobs": "^3.2.0",
"@types/storybook__addon-links": "^3.0.1",
"@types/storybook__addon-notes": "^3.0.1",
"@types/storybook__addon-options": "^3.2.0",
"@types/storybook__react": "^3.0.5",
"@types/webpack": "^3.0.10",
"awesome-typescript-loader": "^3.2.3",
"babel-loader": "^7.1.2",
"copy": "^0.3.1",
"extract-text-webpack-plugin": "^3.0.0",
"glamor": "^2.20.40",
"glamorous": "^4.7.0",
"jest": "^20.0.4",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-markdown": "^2.5.0",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.14",
"ts-loader": "^2.3.4",
"typescript": "^2.5.2"
},
"dependencies": {
"@storybook/addon-info": "^3.2.9",
"@storybook/addon-options": "^3.2.6"
}
}