-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "algorithm-practice",
"author": "[email protected] (jspoetry)",
"version": "1.0.0",
"description": "Algorithmic solutions for tasks from Yandex.Praktikum",
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "parcel build --target default 'src/**/!(*.test|types).ts'",
"watch": "parcel watch --target default 'src/**/!(*.test|types).ts'",
"test": "jest",
"test:watch": "jest --watch --verbose",
"clean": "rimraf dist"
},
"license": "ISC",
"targets": {
"default": {
"context": "node",
"optimize": false,
"sourceMap": false,
"engines": {
"node": ">= 14"
}
}
},
"babel": {
"presets": [
"@parcel/babel-preset-env",
"@babel/preset-typescript"
]
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.18.6",
"@parcel/babel-preset-env": "^2.2.1",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.8",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"parcel": "^2.5.0",
"prettier": "2.7.1",
"rimraf": "^3.0.2"
}
}