-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "webpack-starter-kit",
"version": "2.0.0",
"description": "Project starter kit using webpack, mocha, chai, and SCSS/SASS enabled",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/corysanders3/travel-app.git"
},
"homepage": "http://corysanders3.github.io/travel-app",
"author": "Turing School of Software and Design",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"css-loader": "^5.2.7",
"eslint": "^7.27.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"mocha": "^10.2.0",
"mochapack": "^2.1.2",
"sass": "^1.71.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"lint": "./node_modules/.bin/eslint 'src/**.js' 'test/**.js'",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
}
}