-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "ray-tracer",
"version": "0.0.0",
"description": "A Ray Tracer implementation using JavaScript and Canvas.",
"scripts": {
"build": "node build.js",
"build:prod": "cross-env NODE_ENV=production node build.js",
"clean": "rm -rf dist",
"dev": "concurrently --kill-others \"npm run build\" \"npm run sync\"",
"sync": "browser-sync start --server --watch --serveStatic dist",
"start": "npm run sync",
"test": "jest --watch",
"test:ci": "jest",
"format": "prettier --write *.js src/**/*.{js,jsx,html,css}",
"lint": "eslint --fix *.js src/**/*.{js,jsx} __tests__/**/*.{js,jsx}"
},
"keywords": [
"ray",
"tracer"
],
"author": "Gary Blackwood <gary@garyblackwood.co.uk>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/eslint-parser": "7.14.7",
"@babel/eslint-plugin": "7.14.5",
"@babel/plugin-transform-react-jsx": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"babel-jest": "27.0.6",
"browser-sync": "2.27.4",
"concurrently": "6.2.0",
"cross-env": "7.0.3",
"esbuild": "0.12.14",
"eslint": "7.30.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-react": "7.24.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"prop-types": "15.7.2"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
}
}