-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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": "zero-hour-configuration-solver",
"version": "1.0.0",
"description": "A visual solver for the Destiny 2 Zero Hour configuration puzzle. Based on the spread sheet produced by Math Class.",
"license": "MIT",
"keywords": [],
"main": "src/index.js",
"homepage": "https://deedlefake.github.io/zero-hour-configuration-solver/",
"devDependencies": {
"colors.js": "1.2.4",
"gh-pages": "^2.1.1",
"prettier": "^1.18.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-scripts": "3.2.0",
"rimraf": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"clean": "rimraf build",
"deploy": "gh-pages -d build",
"prettier": "prettier --write package.json public/**/*.html src/**/*.js"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": true,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}