-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.84 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
{
"name": "raytracing-in-one-weekend",
"version": "0.2.0",
"description": "Ray Tracing in One Weekend",
"keywords": [
"webgl",
"threejs",
"raytracing"
],
"private": true,
"author": {
"name": "Amelie Maia Rosser",
"email": "[email protected]",
"url": "http://ameliemaia.art/"
},
"homepage": "https://ameliemaia.github.io/raytracing-in-one-weekend/",
"bugs": {
"url": "https://github.com/ameliemaia/raytracing-in-one-weekend/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ameliemaia/raytracing-in-one-weekend.git"
},
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "npm run linters && react-scripts build",
"deploy": "env-cmd -f .env.gh-pages npm run build && gh-pages -d build",
"eject": "react-scripts eject",
"audit": "audit-ci --high",
"js-lint": "eslint './src/**/*.js' -c ./.eslintrc.json --quiet --ignore-pattern .gitignore",
"flow": "flow",
"flow-typed": "flow-typed install",
"linters": "npm-run-all flow js-lint",
"assets": "node scripts/assets/optimise",
"postinstall": "npm run flow-typed"
},
"engines": {
"node": ">=13.7.0",
"npm": ">=6.13.6"
},
"dependencies": {
"@jam3/detect": "^1.0.2",
"@jam3/stats": "^1.0.1",
"dat.gui": "^0.7.7",
"detect-gpu": "^1.2.0",
"env-cmd": "^10.1.0",
"eventemitter3": "^4.0.0",
"file-saver": "^2.0.2",
"gsap": "^3.2.6",
"gsap-promisify": "^1.0.2",
"query-string": "^6.12.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.0",
"three": "^0.124.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"audit-ci": "^2.5.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-jam3": "^1.1.0",
"eslint-plugin-jam3": "^0.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"fbx2gltf": "^0.9.7-p1",
"file-extension": "^4.0.5",
"file-name": "^0.1.0",
"flow-bin": "^0.118.0",
"flow-typed": "^3.1.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"image-size": "^0.8.3",
"lint-staged": "^10.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"sharp": "^0.24.1",
"shelljs": "^0.8.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "echo 'Pre-commit checks...' && npm run linters && lint-staged",
"pre-push": "echo 'Pre-push checks...' && npm run linters && npm run audit",
"commitmsg": "commitlint -e $GIT_PARAMS"
}
}
}