-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
58 lines (58 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
{
"author": "Codecademy <support@codecademy.com>",
"bugs": {
"url": "https://github.com/Codecademy/40Phaser/issues"
},
"description": "Codecademy's fancy schmancy 404 page.",
"homepage": "https://github.com/Codecademy/40Phaser#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"codecademy",
"phaser",
"learn to code",
"404"
],
"license": "MIT",
"lint-staged": {
"**/*.{css,html,js}": [
"prettier --ignore-path .eslintignore --write",
"git add"
]
},
"main": "./src/index.js",
"name": "40phaser",
"repository": {
"type": "git",
"url": "git+https://github.com/Codecademy/40Phaser.git"
},
"scripts": {
"eslint": "eslint \"./src/*.js\" \"./src/**/*.js\" --report-unused-disable-directives",
"prettier": "prettier \"./src/*.{css,html,js}\" \"./src/**/*.{css,html,js}\" \"./.circleci/config.yml\" \"./package.json\"",
"prettier:write": "npm run prettier -- --write",
"build": "rollup --config",
"start": "http-server -c-1",
"watch": "rollup --config --watch"
},
"version": "1.1.1",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"http-server": "^0.12.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.0",
"phaser": "^3.18.1",
"prettier": "^1.18.2",
"rollup": "^1.16.7",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-url": "^2.2.2"
}
}