forked from sinedied/codingame-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "codingame-ts-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "parcel watch index.ts --target node --cache-dir .tmp/build --no-source-maps",
"build": "parcel build index.ts --target node --cache-dir .tmp/build --no-source-maps --experimental-scope-hoisting",
"build:test": "tsc --outDir .tmp/test --module commonjs",
"test": "jest",
"test:watch": "jest --watch",
"prettify": "prettier --list-different --write \"./src/**/*.ts\""
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.5",
"jest": "^23.4.2",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.0",
"ts-jest": "^23.1.2",
"typescript": "^3.0.1"
},
"prettierConfig": {
"singleQuote": true
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}