-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "gametime-starter",
"version": "1.0.0",
"description": "Gametime starter kit using webpack, mocha, and chai",
"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 build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turingschool-examples/gametime-starter.git"
},
"author": "Turing School of Software and Design",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingschool-examples/gametime-starter/issues"
},
"homepage": "https://github.com/baldm0mma/gametime-starter",
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"mochapack": "^1.0.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"cross-fetch": "^3.0.2",
"es6-promise": "^4.2.6",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.4.1"
}
}