-
Notifications
You must be signed in to change notification settings - Fork 0
/
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/src/*.js",
"stylecheck": "eslint client/src/js/ client/src/*.js --fix",
"postinstall": "cd ./framework && npm install"
},
"dependencies": {
"acorn": "^6.1.1",
"handlebars.element": "^0.4.0",
"http-server": "0.11.1",
"leaflet": "^1.4.0",
"lodash": "4.17.15",
"watch-framework": "file:framework"
},
"engines": {
"node": "10.15.3"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-proposal-object-rest-spread": "7.3.4",
"@babel/plugin-syntax-class-properties": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/preset-env": "7.3.4",
"babel-eslint": "10.0.1",
"babel-jest": "24.5.0",
"babel-loader": "8.0.5",
"babel-plugin-transform-class-properties": "6.24.1",
"copy-webpack-plugin": "5.0.0",
"css-loader": "2.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "13.2.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.2",
"file-loader": "3.0.1",
"fixme": "0.5.0",
"gh-pages": "2.0.1",
"handlebars-template-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.5.0",
"jest-cli": "24.5.0",
"jest-handlebars": "1.0.1",
"jsdom": "13.2.0",
"json-loader": "0.5.7",
"regenerator-runtime": "0.11.1",
"request": "2.88.0",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.29.6",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.2.1"
}
}