-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.33 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": "game-time-starter-kit-fem1",
"version": "1.0.0",
"description": "Starter kit for Turing School's front-end module 1 Game Time project",
"main": "index.js",
"scripts": {
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"build": "./node_modules/webpack/bin/webpack.js",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register",
"eslint": "./node_modules/eslint/bin/eslint.js ./lib/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turingschool-examples/game-time-starter-kit-FEm1.git"
},
"author": "Turing School of Software and Design - Robbie Jaeger",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingschool-examples/game-time-starter-kit-FEm1/issues"
},
"homepage": "https://github.com/turingschool-examples/game-time-starter-kit-FEm1#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.9.0",
"mocha": "^5.1.1",
"mocha-loader": "^1.0.0",
"node-libs-browser": "^2.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"p5": "^0.6.0"
}
}