-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "webpack-starter-kit",
"version": "1.0.0",
"description": "Project starter kit using webpack, mocha, chai, and SCSS/SASS enabled",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"lint": "./node_modules/.bin/eslint 'src/**.js' 'test/**.js'",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/rayredgoose/Overlook.git",
"homepage": "http://rayredgoose.github.io/Overlook"
},
"author": "Turing School of Software and Design",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"file-loader": "^4.2.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^6.2.2",
"mochapack": "^1.1.11",
"node-sass": "^7.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"jquery": "^3.5.0"
}
}