forked from libremesh/lime-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "preact-limeapp",
"version": "0.1.0-alpha.4",
"description": "Limeapp webUI and app",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress",
"start": "serve build -s -c 1",
"prestart": "npm run build",
"build": "cross-env NODE_ENV=production webpack -p --progress --display-optimization-bailout --optimize-minimize && rm ./build/*.map",
"prebuild": "mkdirp build && ncp src/assets build/assets",
"deploy": "gh-pages -d build",
"test": "npm run -s lint && npm run -s test:karma",
"test:karma": "karma start test/karma.conf.js --single-run",
"lint": "eslint ./",
"translations": "node ./node_modules/i18nline/bin/i18nline.js export",
"posttranslations": "node ./i18n-diff.js",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"release": "standard-version"
},
"keywords": [
"preact",
"boilerplate",
"webpack"
],
"license": "GNU",
"author": "Marcos Gutierrez <[email protected]>",
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"colors": "^1.1.2",
"commitizen": "^2.9.6",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.5.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.5.0",
"eslint-config-synacor": "^2.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"i18nline": "^1.5.0",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"ncp": "^2.0.0",
"offline-plugin": "^4.8.3",
"postcss-loader": "^2.0.6",
"raw-loader": "^1.0.0-beta.0",
"replace-bundle-webpack-plugin": "^1.0.0",
"script-ext-html-webpack-plugin": "^1.8.5",
"sinon": "^4.0.1",
"sinon-chai": "^2.13.0",
"source-map-loader": "^0.2.1",
"standard-version": "^4.2.0",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.16.2",
"history": "^4.7.2",
"jssha": "^2.3.1",
"leaflet": "^1.2.0",
"leaflet.gridlayer.googlemutant": "^0.6.2",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"preact-i18nline": "^1.5.0",
"preact-redux": "^2.0.2",
"preact-router": "^2.5.7",
"preact-router-redux": "^4.1.0",
"promise-polyfill": "^6.0.2",
"proptypes": "^1.1.0",
"purecss": "^1.0.0",
"react-load-script": "0.0.6",
"react-pure": "^0.3.1",
"redux": "^3.7.2",
"redux-observable": "^0.17.0",
"redux-thunk": "^2.2.0",
"rxjs": "^5.4.3",
"serve": "^6.0.6",
"simple-color-scale": "^1.0.1",
"simplegrid": "^1.0.2",
"skeleton-less": "^2.0.1",
"ulog": "^1.0.3"
}
}