-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "tic-tac-toe-game-using-bit",
"version": "1.0.0",
"private": true,
"dependencies": {
"@bit/primefaces.primereact.button": "^3.1.0",
"@bit/primefaces.primereact.inputtext": "^3.1.0",
"node-sass": "^4.12.0",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"yarn": "^1.22.0"
},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "12.0.0",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-mocha": "^6.0.0",
"ts-node": "^8.1.0",
"typescript": "3.4.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "ts-mocha -p tsconfig.spec.json src/components/**/*.spec.ts",
"eject": "react-scripts eject"
},
"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"
]
},
"bit": {
"env": {
"compiler": "bit.envs/compilers/[email protected]",
"tester": "bit.envs/testers/[email protected]"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "npm"
}
}