-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "nescore",
"version": "1.0.0",
"private": true,
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"nes.css": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"ringbufferjs": "^2.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "npm start",
"testroms": "npm test src/__tests__",
"benchmark": "npm run build-lib && cp package-lib.json build/lib/package.json && cd scripts/benchmark && node benchmark.js rom.nes",
"build-lib": "cross-env NODE_ENV=production babel src/nes --out-dir build/lib --copy-files"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.js?(x)"
],
"rules": {
"import/no-anonymous-default-export": "off",
"import/no-webpack-loader-syntax": "off"
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"worklet-loader": "^2.0.0"
}
}