-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "threejs-ts-starter",
"version": "1.0.0",
"license": "CC-BY-NC-ND-4.0",
"dependencies": {
"three": "^0.155.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@parcel/config-default": "^2.6.2",
"@parcel/transformer-typescript-tsc": "^2.6.2",
"@types/jest": "^26.0.23",
"@types/three": "^0.155.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"parcel": "^2.6.2",
"parcel-reporter-static-files-copy": "^1.3.4",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^5.1.6"
},
"scripts": {
"start": "yarn run clean && parcel src/index.html",
"build": "yarn run clean && parcel build src/index.html --public-url ./",
"clean": "rimraf ./dist ./.cache ./.parcel-cache",
"lint": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"test": "jest",
"test:watch": "jest --watchAll",
"type-check": "tsc --noEmit",
"ci": "yarn type-check && yarn lint && yarn build"
},
"staticFiles": {
"staticPath": "assets",
"staticOutPath": "assets"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}