-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.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
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
{
"name": "uast-viewer",
"version": "0.4.0",
"description": "reusable component for displaying uast",
"homepage": "https://github.com/bblfsh/uast-viewer",
"main": "lib/index.js",
"module": "es/index.js",
"license": "Apache-2.0",
"scripts": {
"build": "npm-run-all build:*",
"build:cjs": "babel src --out-dir lib --source-maps inline",
"build:es": "BABEL_ENV=es babel src --out-dir es --source-maps inline",
"build:css": "node-sass-chokidar styles/ -o dist/",
"build:docs": "styleguidist build",
"watch": "npm-run-all --parallel watch:*",
"watch:cjs": "babel src --out-dir lib --source-maps inline -w",
"watch:es": "BABEL_ENV=es babel src --out-dir es --source-maps inline -w",
"watch:css": "node-sass-chokidar styles/ -o dist/ --watch",
"lint": "eslint 'src/**/*.js'",
"format": "eslint --fix 'src/**/*.js'",
"test": "jest src/",
"start": "styleguidist server"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"codemirror": "^5.37.0",
"css-loader": "^3.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^4.0.0",
"jest": "^23.6.0",
"node-sass": "^4.9.0",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.2",
"prop-types": "^15.6.1",
"react": "^16.8.4",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.8.4",
"react-styleguidist": "^9.0.1",
"react-test-renderer": "^16.8.4",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"webpack": "^4.21.0"
},
"dependencies": {},
"peerDependencies": {
"codemirror": "^5.37.0",
"prop-types": ">=15.5.7",
"react": ">=16.3.0",
"react-codemirror2": "^5.0.1",
"react-dom": ">=16.3.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"moduleNameMapper": {
"\\.(css|saas)$": "<rootDir>/__mocks__/styleMock.js"
},
"testURL": "http://localhost/"
}
}