This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 2.52 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
106
107
108
109
110
111
112
113
114
115
{
"name": "zanzarah-tools",
"version": "1.0.0",
"description": "A set of various zanzarah modelling tools",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"JSONStream": "^1.3.0",
"base64-js": "^1.2.1",
"bl": "^1.2.0",
"bmp-js": "0.0.3",
"concurrently": "^3.1.0",
"debug": "^2.6.0",
"gl-matrix": "^2.4.0",
"glob": "^7.1.1",
"iconv": "^2.1.6",
"jbinary": "github:kabbi/jBinary",
"jdataview": "^2.5.0",
"jpeg-js": "^0.3.3",
"jszip": "^3.1.3",
"lodash": "^4.17.4",
"node-uuid": "^1.4.3",
"pngjs": "^3.2.0",
"rufus": "^0.5.7",
"three": "^0.84.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"aframe": "^0.6.1",
"babel-eslint": "^7.1.1",
"cors": "^2.8.1",
"dat.gui": "^0.6.1",
"es6-promisify-all": "^0.1.0",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.14.0",
"file-saver": "^1.3.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-scripts": "^1.0.10",
"xo": "^0.18.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "xo"
},
"keywords": [
"zanzarah",
"3D",
"OpenGL",
"editor",
"viewer",
"modelling"
],
"author": "kabbi",
"license": "MIT",
"moduleRoots": [
"src"
],
"xo": {
"space": true,
"parser": "babel-eslint",
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
"src"
]
}
}
},
"rules": {
"import/no-unassigned-import": "off",
"unicorn/filename-case": "off",
"react/forbid-component-props": "off",
"react/jsx-no-bind": "off",
"react/jsx-key": "off",
"comma-dangle": [
"error",
"always-multiline"
],
"array-bracket-spacing": "off",
"object-curly-spacing": "off",
"camelcase": "off",
"new-cap": "off",
"no-await-in-loop": "off",
"no-mixed-operators": "off",
"no-constant-condition": "off"
},
"overrides": [
{
"extends": "xo-react",
"files": "src/**/*.js",
"esnext": true,
"envs": "browser"
},
{
"files": "src/utils/**/*.js",
"rules": {
"import/prefer-default-export": "off"
}
},
{
"files": "src/**/*.test.js",
"envs": "jest"
}
]
}
}