forked from RobRendell/gTove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.63 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": "gtove",
"version": "0.1.0",
"homepage": "https://illuminantgames.com/gtove",
"private": true,
"dependencies": {
"ajv": "^6.3.0",
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.8",
"crypto-js": "^3.1.9-1",
"history": "^4.7.2",
"lodash": "^4.17.5",
"material-design-icons": "^3.0.1",
"prop-types": "^15.6.1",
"react": "^15.6.2",
"react-color": "^2.14.1",
"react-dom": "^15.6.2",
"react-modal": "^3.4.4",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.7",
"react-required-if": "^1.0.3",
"react-scripts-ts": "2.15.1",
"react-select": "^1.2.1",
"react-sizeme": "^2.3.6",
"react-three-renderer": "^3.2.4",
"react-toastify": "^3.4.3",
"redux": "^3.5.2",
"redux-devtools-extension": "^2.13.2",
"redux-first-router": "0.0.16-next",
"redux-first-router-link": "^1.4.2",
"redux-thunk": "^2.2.0",
"simple-peer": "^9.0.0",
"three": "~0.86.0",
"uuid": "^3.2.1"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/ --include-path ./src --include-path ./node_modules",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --include-path ./src --include-path ./node_modules --watch --recursive",
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts-ts build",
"test": "npm run build-css && react-scripts-ts test --env=jsdom",
"coverage": "npm run build-css && npm test -- --coverage",
"eject": "react-scripts-ts eject"
},
"jest": {
"coverageReporters": [
"html"
]
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-enzyme": "^0.6.4",
"@types/classnames": "^2.2.3",
"@types/crypto-js": "^3.1.40",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.107",
"@types/node": "^9.6.5",
"@types/prop-types": "^15.5.2",
"@types/react-color": "^2.13.6",
"@types/react-dom": "15.5.0",
"@types/react-modal": "^3.1.2",
"@types/react-onclickoutside": "^6.0.3",
"@types/react-redux": "^5.0.16",
"@types/react-select": "^1.2.11",
"@types/react-transition-group": "^2.0.8",
"@types/redux-first-router": "^1.10.2",
"@types/simple-peer": "^6.1.4",
"@types/sinon": "^4.3.1",
"@types/three": "^0.92.0",
"@types/uuid": "^3.4.3",
"babel-core": "6",
"babel-runtime": "^6.23.0",
"chai": "^4.1.0",
"chai-enzyme": "^0.8.0",
"cheerio": "1.0.0-rc.1",
"enzyme": "^2.9.1",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1",
"react-test-renderer": "^15.6.2",
"sinon": "^4.4.8",
"typescript": "^2.8.2"
}
}