-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "bodyweightlogger",
"version": "0.1.0",
"description": "A Bodyweight Workout Logging Application",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --port 7000 --hot",
"test": "elm-test",
"test-watch": "watch-run -p 'src/**/*.elm,tests/**/*.elm' elm-test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/prikhi/bodyweight-client.git"
},
"keywords": [
"workout",
"log",
"logging",
"calisthenics",
"bodyweight",
"fitness",
"routine"
],
"author": "Pavan Rikhi",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/prikhi/bodyweight-client/issues"
},
"homepage": "https://github.com/prikhi/bodyweight-client#readme",
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"css-loader": "^0.28.4",
"elm": "^0.18.0",
"elm-hot-loader": "^0.5.4",
"elm-test": "^0.18.7",
"elm-webpack-loader": "^4.3.1",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"watch-run": "^1.2.5",
"webpack": "^3.2.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^2.5.1"
}
}