-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "technical-challenge",
"version": "1.0.0",
"description": "WebGL city builder game using Three JS",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"lint": "tslint -p tsconfig.json --fix src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinhodev/technical-challenge.git"
},
"author": "Justin Ho",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinhodev/technical-challenge/issues"
},
"homepage": "https://github.com/justinhodev/technical-challenge#readme",
"dependencies": {
"three": "^0.105.2",
"typescript": "^3.5.2"
},
"devDependencies": {
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "always",
"semi": true,
"singleQuote": true
}
}