-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "@trioxis/ui",
"version": "0.1.0",
"description": "Trioxis UI components",
"main": "lib/index.js",
"author": {
"email": "[email protected]",
"name": "Trioxis",
"url": "http://trioxis.com"
},
"homepage": "https://github.com/Trioxis/trioxis-ui",
"bugs": "https://github.com/Trioxis/trioxis-ui/issues",
"license": "MIT",
"private": false,
"scripts": {
"cmd": "",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "./scripts/prepare.sh",
"dist": "yarn prepare && cd ./lib && yarn publish --ignore-scripts"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-links": "^3.2.12",
"@storybook/cli": "^3.2.12",
"@storybook/react": "^3.2.12",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.2",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.1",
"react-test-renderer": "^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-jss": "^7.2.0",
"recompose": "^0.26.0"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": ["/lib"]
}
}