forked from entur/tavla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 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
{
"name": "tavla",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/entur/tavla/"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src --ext 'js,jsx'",
"stylelint": "stylelint src/**/*.scss",
"lint": "npm run eslint && npm run stylelint",
"start": "wp --config webpack.config.js",
"clean": "rm -rf dist/",
"build": "npm run clean && webpack --mode production --env prod",
"build:staging": "npm run clean && webpack --mode production --env staging",
"deploy": "npm run build && firebase deploy -P prod",
"deploy:staging": "npm run build:staging && firebase deploy -P staging",
"postinstall": "node ./scripts/postinstall.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@entur/component-library": "^0.26.1",
"@entur/sdk": "^0.11.1",
"connect-history-api-fallback": "^1.6.0",
"koa-connect": "^2.0.1",
"lodash.debounce": "^4.0.8",
"moment": "^2.24.0",
"react": "^16.9.0",
"react-accessible-accordion": "^3.0.0",
"react-autosuggest": "^9.4.3",
"react-dom": "^16.9.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"universal-ga": "^1.2.0"
},
"optionalDependencies": {
"@entur/fonts": "git+ssh://[email protected]:enturas/entur-fonts.git#a5e1956"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"css-loader": "^3.2.0",
"dotenv": "^8.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.2.0",
"firebase-tools": "^7.3.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-nano": "^0.6.3",
"webpack-plugin-serve": "^0.11.0",
"webpack-serve": "^3.2.0"
}
}