-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 KB
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
{
"name": "flash-cards",
"version": "1.0.0",
"description": "flash cards",
"main": "index.js",
"scripts": {
"watch": "./node_modules/.bin/webpack --watch --config webpack.dev.js",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "./node_modules/.bin/webpack --config webpack.prod.js",
"deploy-staging": "npm run build && firebase deploy -P flashcards-staging",
"deploy-production": "npm run build && firebase deploy -P flashcards-production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertpatterson/Flash-Cards.git"
},
"keywords": [
"study",
"flashcard"
],
"author": "Albert Patterson",
"license": "ISC",
"bugs": {
"url": "https://github.com/albertpatterson/Flash-Cards/issues"
},
"homepage": "https://github.com/albertpatterson/Flash-Cards#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-plugin-promise": "^4.2.1",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.0.1",
"style-loader": "^1.0.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"firebase": "^6.3.5"
}
}