-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tams-tools",
"version": "1.1.0",
"description": "Set of tools for teaching theoretical computer science",
"main": "index.js",
"private": true,
"scripts": {
"compile": "cross-env NODE_ENV=production webpack --config webpack/prod.config.babel.js --progress",
"lint": "eslint .",
"start": "webpack-dev-server --config webpack/dev.config.babel.js --progress --inline --hot --host 0.0.0.0",
"test": "ava",
"clear": "rm -rf ./build"
},
"author": "Laszlo Korte <[email protected]> (https://www.laszlokorte.de/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@webpack-cli/migrate": "^0.1.8",
"ajv": "^6.10.2",
"ava": "^1.4.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.1",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^2.6.10",
"cross-env": "^7.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-no-class": "^0.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"nib": "^1.1.2",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.5",
"style-loader": "^0.23.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.4.0",
"@cycle/isolate": "^1.4.0",
"bitset": "^5.0.5",
"immutable": "^4.0.0-rc.12",
"raf": "^3.4.1",
"rx": "^4.1.0",
"virtual-dom": "^2.1.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-function-bind"
]
},
"ava": {
"files": [
"**/*.spec.js"
],
"source": [
"**/*.{js,jsx}",
"!build/**/*",
"!**/*.spec.js"
],
"failFast": true,
"tap": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}