-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "Daylight",
"version": "1.0.0",
"description": "Shows current sunset and sunrise times for a selected location.",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "webpack --mode production",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariusjagminas/Daylight.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mariusjagminas/Daylight/issues"
},
"homepage": "https://github.com/mariusjagminas/Daylight#readme",
"devDependencies": {
"bulma": "^0.8.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-jest": "^24.9.0",
"moment": "^2.24.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./jestSetup.js"
]
}
}