-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "livecodelab",
"version": "0.1.0",
"description": "A live coding environment for the browser",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidedc/livecodelab/issues"
},
"repository": "davidedc/livecodelab",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"docs": "docco docs/**/*.md -o dist/docs",
"docs:src": "docco src/coffee/**/*.coffee -o dist/docs/src",
"test": "mochapack --webpack-config webpack.config.js \"tests/**/*.js\"",
"testone": "mochapack --webpack-config webpack.config.js",
"prettier": "prettier --single-quote",
"servewiki": "tiddlywiki docs/wiki --server",
"buildwiki": "tiddlywiki docs/wiki --output ./dist/wiki --build index"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.7.7",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"coffee-loader": "0.9.0",
"coffeescript": "2.4.1",
"css-loader": "3.4.0",
"decaffeinate": "^6.0.9",
"dentist": "1.0.3",
"docco": "0.8.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.2",
"file-loader": "5.0.2",
"mocha": "6.2.2",
"mochapack": "^1.1.13",
"pegjs": "0.10.0",
"pegjs-loader": "0.5.5",
"prettier": "1.19.1",
"source-map-loader": "0.2.4",
"style-loader": "1.1.1",
"tiddlywiki": "5.1.21",
"url-loader": "3.0.0",
"webpack": "4.41.4",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1"
},
"dependencies": {
"buzz": "1.2.1",
"underscore": "1.9.1"
}
}