-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mesopotamia-jones",
"version": "1.0.0",
"description": "",
"author": "Looping Doge",
"license": "MIT",
"main": "src/main.ts",
"scripts": {
"start": "cross-env NODE_ENV=debug PLATFORM=web webpack-dev-server --open --port 3000 --progress --colors",
"build": "cross-env NODE_ENV=production PLATFORM=web webpack -p --progress --colors",
"test": "jest",
"lint": "tslint -c tslint.json src/**/*.ts src/**/*.tsx",
"precommit": "lint-staged"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|json)$": "<rootDir>/src/components/__mocks__/fileMock.js"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/aphrodite": "^0.5.6",
"@types/enzyme": "^2.8.4",
"@types/history": "^4.6.0",
"@types/jest": "^20.0.5",
"@types/lodash": "^4.14.74",
"@types/react": "15.6.0",
"@types/react-custom-scrollbars": "^4.0.1",
"@types/react-dom": "^15.5.1",
"@types/react-motion": "^0.0.23",
"@types/react-router": "^4.0.14",
"@types/react-tooltip": "^3.3.0",
"@types/sinon": "^2.3.3",
"@types/webfontloader": "^1.6.28",
"awesome-typescript-loader": "^3.2.2",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"expose-loader": "^0.7.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.0.2",
"mobx-react-devtools": "^4.2.15",
"prettier": "^1.5.3",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^2.4.1",
"source-map-loader": "^0.2.1",
"sw-precache-webpack-plugin": "^0.11.4",
"ts-jest": "^20.0.7",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.3.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.1.0",
"typescript": "^2.4.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-manifest-plugin": "^1.3.2",
"webpack-pwa-manifest": "^3.2.0"
},
"dependencies": {
"aphrodite": "^1.2.3",
"browser-locale": "^1.0.3",
"history": "^4.6.3",
"lodash": "^4.17.11",
"mobx": "^3.2.2",
"mobx-react": "^4.2.2",
"mobx-react-router": "^4.0.1",
"node-blockly": "^1.0.23",
"phaser-ce": "^2.8.3",
"preload-js": "^0.6.3",
"rc-progress": "^2.2.2",
"react": "^16.0.0",
"react-flag-kit": "^0.2.3",
"react-icons-kit": "^1.0.7",
"react-modal": "^2.3.2",
"react-motion": "^0.5.1",
"react-router-dom": "^4.2.2",
"react-tooltip": "^3.8.1",
"reactour": "^1.6.1"
}
}