-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "process-scheduling",
"version": "0.1.0",
"private": true,
"dependencies": {
"dat.gui": "^0.7.6",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"styled-components": "^4.4.1",
"xterm": "^4.1.0",
"xterm-addon-fit": "^0.3.0"
},
"scripts": {
"start": "parcel --host 0.0.0.0 -p 1234 watch index.html",
"build": "NODE_ENV=production parcel build index.html --no-source-maps",
"lint": "npx tslint --project tslint.json",
"test": "jest"
},
"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"
]
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"@types/dat.gui": "^0.7.5",
"@types/jest": "^24.0.21",
"@types/node": "12.11.2",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/styled-components": "^4.1.20",
"husky": "^3.0.9",
"jest": "^24.9.0",
"parcel": "^1.12.4",
"ts-jest": "^24.1.0",
"tslint": "^6.0.0-beta0",
"tslint-react": "^4.1.0",
"typescript": "^3.8.0-dev.20191105"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test"
}
}
}