-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
52
53
54
55
{
"name": "rangers",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint -c tslint.json '*/**/*.tsx'",
"test": "jest",
"dev": "NODE_ENV=development webpack-dev-server --hot",
"build": "NODE_ENV=production webpack",
"ghpages": "npm run build && cp index.html docs && cp -r dist docs"
},
"keywords": [],
"author": "Paul Mölders",
"license": "MIT",
"devDependencies": {
"@types/classnames": "^0.0.32",
"@types/jest": "^16.0.0",
"classnames": "^2.2.5",
"css-loader": "^0.26.1",
"jest-cli": "^17.0.3",
"react-hot-loader": "^1.3.1",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^1.2.2",
"tslint": "^4.0.1",
"typescript": "^2.1.0",
"typings-for-css-modules-loader": "^1.1.1",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
},
"dependencies": {
"@types/lodash": "^4.14.48",
"@types/react": "^0.14.50",
"@types/react-dom": "^0.14.19",
"lodash": "^4.17.4",
"mobx": "^2.7.0",
"mobx-react": "^4.0.4",
"mobx-react-devtools": "^4.2.10",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-lite": "^0.15.30"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testRegex": "/tests/.*\\.(ts|tsx|js)$"
}
}