-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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": "react-hot-ts",
"version": "0.7.3",
"description": "React HMR support for Typescript as AST transformer",
"scripts": {
"build": "tsc -t es5 -m commonjs -d index.ts && tsc lib/transformer.ts -d",
"test:es5": "webpack --env.es5 --config webpack.test.js && node test/test-suite.js es5",
"test:es6": "webpack --env.es6 --config webpack.test.js && node test/test-suite.js es6",
"test:all": "yarn test:es5 && yarn test:es6",
"test": "yarn build && cd test && yarn test:all && NODE_ENV=production yarn test:all"
},
"main": "index.js",
"files": [
"lib/transformer.js",
"lib/transformer.d.ts",
"index.js",
"index.d.ts",
"cold.js"
],
"keywords": [
"typescript",
"hmr",
"react",
"webpack"
],
"author": "Philippe Elsass",
"license": "ISC",
"dependencies": {
"react-proxy": "^1.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/elsassph/react-hot-ts.git"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/node": "^11.11.6",
"chai": "^4.2.0",
"print-diff": "^0.1.1",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}