-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.33 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
{
"name": "pyret-blocks",
"version": "0.1.2",
"description": "Pyret language for use in CodeMirror Blocks",
"main": "src/languages/pyret/index.js",
"engines": {
"node": ">=6.x",
"npm": ">=3.x"
},
"dependencies": {
"codemirror-blocks": "bootstrapworld/codemirror-blocks#b3c36e7a9835810b1324503d787e50860d2c89a5"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"codemirror": "^5.62.0",
"css-loader": "^5.1.6",
"eslint": "^7.30.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.8.0",
"jasmine-core": "^3.8.0",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"npm-check": "^5.9.2",
"raw-loader": "^4.0.2",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^17.0.1",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.43.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"codemirror": "^5.62.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "karma start --single-run && tsc --noEmit",
"test-watch": "karma start",
"prepare": "npm run build",
"start": "webpack serve --config-name=devServer",
"build": "webpack --mode production",
"build-debug": "webpack --mode development",
"build-watch": "webpack --watch --mode development",
"lint": "eslint src spec --ext .js || true"
},
"author": "The Bootstrap Team",
"contributors": [
"Kevin Hsu",
"Matthew Ji",
"Justin Pombrio",
"Emmanuel Schanzer",
"Preston Tunnell Wilson",
"Dorai Sitaram",
"Robert Scheidegger"
],
"license": "MIT License"
}