-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "simon-game",
"version": "1.0.0",
"description": "Implementation of the [freeCodeCamp Simon Game project](https://www.freecodecamp.com/challenges/build-a-simon-game).",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --notify --watch",
"build": "webpack",
"start": "webpack-dev-server",
"stylus": "stylus -w ./src/main.styl -o ./dist/styles.css",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thancock20/simon-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thancock20/simon-game/issues"
},
"homepage": "https://github.com/thancock20/simon-game#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^21.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"prettier-eslint": "^8.8.2",
"stylus": "^0.54.5",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}