-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "bambu",
"version": "0.7.4-beta.4",
"description": "",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"start": "node ./tools/app/start.js",
"watch:react-docs": "node --max_old_space_size=4096 ./tools/FileWatcher.js",
"start:app": "webpack-dev-server --port 8383 --config tools/app/dev/webpack.js --colors",
"showcase:build": "rimraf ./docs && node ./tools/app/build.js",
"showcase:serve": "http-server ./docs -p 8282",
"build:app": "webpack --config tools/app/build/webpack.js --colors",
"build": "rimraf ./lib && tsc -p ./tsconfig-lib.json && gulp bulma-css-as-json",
"test": "jest",
"export:modules": "node ./tools/findAndExportModules.js",
"export:bulma-css-as-json": "gulp bulma-css-as-json",
"export:react-docs": "rimraf ./showcase/modules/react-docs && node ./tools/parseReactDoc.js"
},
"license": "MIT",
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/codemirror": "^0.0.74",
"@types/highlight.js": "^9.12.3",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"app-root-path": "^2.2.1",
"bulma": "^0.7.4",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"classnames": "^2.2.6",
"codemirror": "^5.46.0",
"colors": "^1.3.3",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"file-extension": "^4.0.5",
"font-awesome": "^4.7.0",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"highlight.js": "^9.15.6",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"js-criteria": "^2.1.2",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"module": "^1.2.5",
"postcss-modules": "^1.4.1",
"prop-types": "^15.7.2",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-docgen-typescript": "^1.12.4",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"source-map-support": "^0.5.12",
"style-loader": "^0.23.1",
"ts-lint": "^4.5.1",
"ts-loader": "^6.0.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.5",
"wasabi-common": "2.2.3",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-notifier": "^1.7.0"
},
"peerDependencies": {
"bulma": "^0.7.4",
"classnames": "^2.2.6",
"font-awesome": ">=5",
"prop-types": ">=15",
"react": "^16.8.6"
},
"dependencies": {
"wasabi-common": "2.2.3"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"jest": {
"setupFiles": [
"<rootDir>/tools/jest/test-shim.js",
"<rootDir>/tools/jest/test-setup.js"
],
"collectCoverageFrom": [
"**/src/**/*.(ts|tsx)"
],
"coverageReporters": [
"text-summary",
"html"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"verbose": true,
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/tools/jest/test-preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.spec.(ts|tsx)"
]
}
}