forked from fireship-io/fireship.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.8 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
{
"name": "fireship",
"version": "0.0.1",
"description": "Awesome content for developers",
"main": "index.js",
"repository": {
"url": "https://github.com/fireship-io/fireship.io"
},
"scripts": {
"test": "cypress open",
"dev:design": "webpack --watch",
"dev:hugo": "cd hugo && hugo server --disableFastRender",
"dev": "concurrently \"npm run dev:hugo\" \"npm run dev:design\"",
"build:design": "webpack",
"build:hugo": "cd hugo && hugo",
"build:components": "cd components && npm run lint && npm run build",
"build": "rm -rf public && npm run build:design && npm run build:components && npm run build:hugo",
"algolia": "atomic-algolia",
"deploy": "firebase deploy --debug --token \"$FIREBASE_TOKEN\" --only hosting",
"link-upstream": "git remote add upstream https://github.com/fireship-io/fireship.io",
"sync": "git fetch && git checkout master && git merge upstream/master && git push",
"reset": "rm -rf ./node_modules ./package-lock.json && npm install && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"hotroute": "0.0.7"
},
"devDependencies": {
"assets-webpack-plugin": "^3.9.7",
"atomic-algolia": "^0.3.17",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.1.0",
"css-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"firebase-admin": "^6.1.0",
"firebase-tools": "^7.14.0",
"fs-extra": "^7.0.0",
"http-server": "^0.11.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.0",
"typescript": "^3.1.6",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1"
}
}