-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.25 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
{
"name": "react-surface",
"version": "0.1.0",
"description": "A custom react renderer utilizing facebook yoga targeting canvas/webgl",
"author": "Kasper Sandin",
"repository": "https://github.com/ksandin/react-surface",
"dependencies": {
"color": "2.0.1",
"fbjs": "0.8.16",
"lodash": "4.17.4",
"mobx": "3.4.1",
"mobx-react": "4.3.5",
"performance-now": "2.1.0",
"pixi.js": "4.6.2",
"prop-types": "15.6.0",
"radium": "0.19.6",
"raf": "3.4.0",
"react": "16.2.0",
"react-hot-loader": "3.1.3",
"react-reconciler": "0.7.0",
"stats.js": "0.17.0",
"tween.js": "16.6.0",
"webfontloader": "1.6.28",
"yoga-layout": "1.8.0",
"bezier-easing": "2.0.3"
},
"devDependencies": {
"@types/color": "2.0.0",
"@types/jest": "21.1.5",
"@types/lodash": "4.14.91",
"@types/pixi.js": "4.6.1",
"@types/prop-types": "15.5.2",
"@types/radium": "0.18.23",
"@types/react": "16.0.31",
"@types/react-hot-loader": "3.0.5",
"@types/webfontloader": "1.6.29",
"@types/webpack": "3.8.1",
"@types/webpack-env": "1.13.3",
"@types/tween.js": "16.9.0",
"autodll-webpack-plugin": "0.3.8",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"html-webpack-plugin": "2.30.1",
"jest": "21.2.1",
"jsdom": "11.5.1",
"pre-commit": "1.2.2",
"style-loader": "0.19.1",
"ts-loader": "3.2.0",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"tslint-config-airbnb": "5.4.2",
"tslint-react": "3.2.0",
"typescript": "2.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7",
"canvas-prebuilt": "2.0.0-alpha.5"
},
"scripts": {
"pre-commit": [
"lint",
"test"
],
"build": "webpack --config ./demo/webpack.config.ts --env.outputFolder ../dist",
"dev-server": "webpack-dev-server --config ./demo/webpack.config.ts --env.index --env.cache --env.stats --env.debug --env.hmr --env.sourceMaps",
"dev-server-fast": "webpack-dev-server --config ./demo/webpack.config.ts --env.index --env.vendor --env.cache --env.hmr",
"test": "jest",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"lint": "tslint --project tsconfig.json --config tslint.json"
}
}