forked from turingschool-examples/fitlit-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 917 Bytes
/
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
{
"name": "activity-tracker",
"version": "1.0.0",
"description": "",
"main": "domUpdates.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dkwon1223/fitlit.git"
},
"homepage": "https://dkwon1223.github.io/fitlit",
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Turing School of Software and Design",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"mocha": "^8.4.0",
"mochapack": "^2.1.2",
"sass": "^1.34.0",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"fluid-meter": "^1.1.2"
}
}