-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.95 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
{
"name": "meetup.org",
"version": "0.1.0",
"private": true,
"homepage": "https://perjerz3434.github.io/meetup.com/",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/webpack": "^4.4.17",
"@types/webpack-env": "^1.13.6",
"@webpack-blocks/assets": "^2.0.0-alpha",
"@webpack-blocks/core": "^2.0.0-alpha",
"@webpack-blocks/dev-server": "^2.0.0-alpha",
"@webpack-blocks/extract-text": "^2.0.0-alpha",
"@webpack-blocks/postcss": "^2.0.0-alpha",
"@webpack-blocks/sass": "^2.0.0-alpha",
"@webpack-blocks/tslint": "^2.0.0-alpha",
"@webpack-blocks/typescript": "^2.0.0-alpha",
"@webpack-blocks/uglify": "^2.0.0-alpha",
"@webpack-blocks/webpack": "^2.0.0-alpha",
"autoprefixer": "^9.2.1",
"awesome-typescript-loader": "^5.2.1",
"base-href-webpack-plugin": "^2.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.4",
"cross-env": "^5.2.0",
"cyclejs-test-helpers": "^4.0.0",
"html-webpack-harddisk-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"istanbul-instrumenter-loader-fix": "^3.0.2",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "^4.9.4",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"snabbdom-looks-like": "^1.0.4",
"snabbdom-pragma": "^2.7.0",
"typescript": "~3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config configs/webpack.config.js",
"test": "cross-env NODE_ENV=test nyc mocha-webpack --colors --webpack-config configs/webpack.config.js test/**/*.test.{js,jsx,ts,tsx}",
"build": "cross-env NODE_ENV=production webpack --config configs/webpack.config.js",
"build:gh": "npm run build --baseHref=/meetup.com/",
"clean": "rimraf build .nyc_output coverage",
"deploy:gh": "npm run build:gh && git checkout gh-pages && git rm -rf ./ && cp build/* ./ && git commit -m \"Deploy to Github Pages\" && git push origin gh-pages && git checkout master && git clean -f"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nyc": {
"instrument": false,
"sourceMap": false,
"include": [
"src/components"
],
"reporter": [
"html",
"text"
]
},
"dependencies": {
"@cycle/dom": "^22.0.0",
"@cycle/history": "^7.0.0",
"@cycle/isolate": "^4.1.0",
"@cycle/run": "^5.1.0",
"@cycle/state": "^1.0.0",
"@cycle/time": "^0.16.0",
"cyclejs-utils": "^4.0.2",
"cyclic-router": "^5.1.7",
"datamaps": "^0.5.9",
"switch-path": "^1.2.0",
"xstream": "^11.7.0"
},
"one-fits-all": true
}