This repository was archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@ox2/iframe",
"version": "1.0.0",
"description": "Auto sizable iframe component.",
"repository": {
"type": "git",
"url": "https://github.com/ox2/iframe"
},
"license": "MIT",
"scripts": {
"build": "npm run build:babel && npm run build:copy-files",
"build-storybook": "build-storybook -s ./public",
"build:babel": "babel ./src --ignore *.story.js,*.test.js --out-dir ./build",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"clean:build": "rimraf build",
"clean:docs": "rimraf docs",
"docs": "styleguidist server",
"docs:build": "npm run clean:docs && styleguidist build && npm run docs:copy-to-public",
"docs:copy-to-public": "bash ./scripts/copy_docs.sh",
"lint": "eslint src scripts; exit 0",
"prebuild": "npm run clean:build && npm run lint && npm run test",
"prettier": "prettier --print-width 60 --single-quote --trailing-comma all --write \"src/**/*.js\"",
"storybook": "start-storybook -p 55001 -s ./public",
"test": "jest",
"test:update": "yarn test -- -u"
},
"devDependencies": {
"@ox2/css-font-roboto": "^1.0.0",
"@ox2/css-font-roboto-condensed": "^3.0.0",
"@ox2/theming": "^2.0.2",
"@ox2/ycss": "^1.6.0",
"@storybook/addon-options": "^3.1.5",
"@storybook/react": "^3.1.5",
"@tapfuse/theme-spark": "^1.1.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-do-expressions": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^3.0.1",
"jest-cli": "^20.0.4",
"prettier": "^1.4.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-styleguidist": "^5.4.8",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2"
},
"main": "./index.js",
"engines": {
"npm": "^3.0.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-virtualized": "^9.8.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"jest": {
"roots": [
"./src"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}