-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.51 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
{
"description": "T-rex timetravel",
"private": true,
"name": "trex-timetracel",
"author": "",
"main": "index.js",
"version": "0.0.1",
"repository": "",
"scripts": {
"test": "./node_modules/.bin/tsc && npm run lint && ./node_modules/.bin/jest",
"start": "node node_modules/.bin/webpack-dev-server",
"test:watch": "./node_modules/.bin/jest --watch",
"test:coverage": "./node_modules/.bin/jest --coverage",
"lint": "./node_modules/.bin/tslint --project tsconfig.json --format stylish",
"build": "./node_modules/.bin/webpack --config webpack.config.js"
},
"dependencies": {
"redux": "^3.7.2"
},
"devDependencies": {
"@types/jest": "^19.2.4",
"@types/redux": "^3.6.0",
"awesome-typescript-loader": "^3.2.3",
"copy-webpack-plugin": "^4.2.0",
"jest": "^21.2.1",
"source-map-loader": "^0.2.3",
"ts-jest": "^21.1.4",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.4.5"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1",
"^.+\\.scss$": "<rootDir>/stub.ts"
}
}
}