forked from da4throux/MMM-Paris-RATP-PG
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.83 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
{
"name": "MMM-IDF-LOCALTRANSPORT",
"version": "1.1.0",
"description": "Local transport in IDF based on API module for MagicMirror",
"repository": {
"type": "git",
"url": "git+https://github.com/djey47/MMM-IDF-LOCALTRANSPORT"
},
"keywords": [
"magic mirror",
"smart mirror",
"localtransport",
"module",
"paris",
"STIF",
"RATP",
"transilien",
"SNCF",
"citymapper.com"
],
"author": "djey47",
"license": "MIT",
"bugs": {
"url": "https://github.com/djey47/MMM-IDF-LOCALTRANSPORT/issues"
},
"homepage": "https://github.com/djey47/MMM-IDF-LOCALTRANSPORT#readme",
"scripts": {
"install": "npm run build-prod",
"build:module": "webpack --config tools/webpack/webpack.config.module.js",
"build:module-prod": "webpack -p --config tools/webpack/webpack.config.module.js",
"build:helper": "webpack --config tools/webpack/webpack.config.helper.js",
"build:helper-prod": "webpack -p --config tools/webpack/webpack.config.helper.js",
"build": "yarn build:module && yarn build:helper",
"build-prod": "yarn build:module-prod && yarn build:helper-prod",
"analyze:module": "yarn build:module && yarn webpack-bundle-analyzer stats.json .",
"analyze:helper": "yarn build:helper && yarn webpack-bundle-analyzer stats.json .",
"lint": "yarn lint:scripts",
"lint:scripts": "eslint src tools/dev-server && yarn flow",
"flow:typings": "yarn flow-typed update",
"test": "yarn jest -- --config ./tools/test/jest.default.json",
"jest:watch:module": "yarn jest -- --config ./tools/test/jest.client.json --watch",
"jest:watch:helper:": "yarn jest -- --config ./tools/test/jest.server.json --watch",
"jest:watch": "yarn jest -- --config ./tools/test/jest.default.json --watch",
"precommit": "yarn lint",
"prepush": "yarn test",
"dev-server": "nodemon --watch ./tools/dev-server ./tools/dev-server/dev-server.js"
},
"dependencies": {
"axios": "^0.16.2",
"classnames": "^2.2.5",
"html-beautify": "^1.0.4",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"node-forge": "latest",
"normalize-text": "^2.4.1",
"xml2js": "^0.4.18"
},
"devDependencies": {
"app-root-dir": "^1.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"config": "^1.28.1",
"dyson": "^2.0.0",
"eslint": "^4.4.1",
"eslint-plugin-flowtype": "^2.35.0",
"flow-bin": "^0.53.1",
"flow-typed": "^2.1.5",
"husky": "^0.14.3",
"jest": "^20.0.4",
"nodemon": "^1.12.5",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.9.0"
}
}