-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "tastes",
"version": "0.3.2",
"description": "Code and create with generative samples",
"repository": "https://github.com/awfulaxolotl/tastes",
"author": "Kevin Sullivan <[email protected]>",
"license": "MIT",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist"
],
"scripts": {
"develop": "ava --watch",
"storybook": "start-storybook --port 9001 --config-dir .storybook",
"test": "ava",
"build": "npm run build:dist && npm run build:docs",
"build:dist": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "rimraf dist/esm && tsc --project tsconfig.esm.json",
"build:cjs": "rimraf dist/cjs && tsc --project tsconfig.cjs.json",
"build:docs": "rimraf docs && build-storybook --config-dir .storybook --output-dir docs"
},
"dependencies": {
"ramda": "^0.25.0",
"react": "^16.1.1",
"react-primitives": "^0.6.0"
},
"devDependencies": {
"@storybook/react": "^4.0.0-alpha.14",
"@types/ramda": "^0.25.5",
"@types/react-native": "^0.57.0",
"@types/storybook__react": "^3.0.8",
"ava": "1.0.0-beta.6",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "^6.26.3",
"react-dom": "^16.1.1",
"rimraf": "^2.6.2",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.0",
"tslint": "^5.8.0",
"typescript": "^3.1.0"
}
}