-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 2.2 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
{
"name": "levelup-watch",
"version": "1.1.0",
"description": "Scaffolding for a watch app",
"author": "LevelUp",
"repository": {
"type": "git",
"url": "https://github.com/twlevelup/watch_edition"
},
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --inline --disableHostCheck --hot",
"build": "webpack",
"test": "jest",
"test:dev": "jest --watchAll",
"ci": "npm -s run stylecheck && npm -s run test",
"deploy": "gh-pages -d public -u 'levelup <[email protected]>' -m 'Deploy to Github Pages' -t",
"todos": "fixme -p client/src/js && fixme -p client/spec/",
"stylecheck": "eslint client/src/js/ client/spec/ --fix",
"postinstall": "cd ./framework && npm install"
},
"dependencies": {
"acorn": "6.4.2",
"handlebars.element": "0.4.0",
"http-server": "0.13.0",
"leaflet": "1.7.1",
"lodash": "4.17.21",
"watch-framework": "file:framework"
},
"engines": {
"node": "16.15.0"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.16.0",
"@babel/preset-env": "7.16.4",
"babel-eslint": "10.1.0",
"babel-jest": "24.9.0",
"babel-loader": "8.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"copy-webpack-plugin": "5.1.2",
"css-loader": "5.2.7",
"eslint": "5.0.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.25.3",
"file-loader": "3.0.1",
"fixme": "0.6.0",
"gh-pages": "2.2.0",
"handlebars-template-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"jest-handlebars": "1.0.1",
"jsdom": "16.5.0",
"json-loader": "0.5.7",
"regenerator-runtime": "0.13.9",
"request": "2.88.2",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3"
}
}