This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.94 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
{
"name": "react-three-renderer-fiber",
"version": "0.0.6",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Firtina `toxicFork` Ozbalikci (http://toxicfork.com)",
"license": "MIT",
"dependencies": {
"react-reconciler": "^0.18.0",
"scheduler": "^0.12.0"
},
"scripts": {
"generate-descriptor-map": "ts-node utils/generate-descriptor-map.ts",
"clean": "node utils/clean.js",
"build": "npm run generate-descriptor-map && tsc",
"build-examples": "cross-env NODE_ENV=production webpack --config ./examples/webpack.config.js",
"start": "webpack-dev-server --config ./examples/webpack.config.js --content-base examples/",
"start-prod": "cross-env NODE_ENV=production webpack-dev-server",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx,d.ts}' 'examples/src/**/*.{ts,tsx,d.ts}'",
"lint-fix": "tslint --fix --project examples/tsconfig.json -c tslint.json 'src/**/*.{ts,tsx,d.ts}' 'examples/src/**/*.{ts,tsx,d.ts}'",
"pretest": "npm run lint",
"prepublishOnly": "npm test && npm run clean && npm run build",
"test": "karma start tests/karma.conf.js --single-run",
"tdd": "karma start tests/karma.conf.js",
"tdd-prod": "cross-env NODE_ENV=production karma start tests/karma.conf.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/events": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-reconciler": "^0.16.0",
"@types/scheduler": "^0.10.0",
"@types/sinon": "^7.0.3",
"@types/three": "^0.93.15",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"console-expect": "^2.1.0",
"cross-env": "^5.2.0",
"dirty-chai": "^2.0.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.5",
"mocha": "^5.2.0",
"prop-types": "^15.6.2",
"puppeteer": "^1.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.2",
"source-map": "0.6.1",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.10",
"three": "^0.100.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-loader": "^3.6.0",
"typescript": "^3.2.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"three": "^0.100.0"
}
}