-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "pyramid",
"targets": {
"web": {
"context": "browser",
"engines": {
"browserslist": "> 0.5%, last 2 versions, not dead"
},
"distDir": "bin",
"source": "index.html",
"scopeHoist": false,
"publicUrl": "./",
"sourceMap": false
}
},
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "parcel serve --dist-dir bin-dev",
"build": "parcel build",
"tswatch": "tsc --watch --noEmit --project tsconfig.json",
"lint": "eslint --ext .ts .",
"lintfix": "eslint --ext .ts . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"pure-rand": "^6.0.0"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.8.0",
"parcel": "^2.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"typescript": "^5.0.0"
}
}