-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "react-tac-toe",
"version": "1.0.0",
"description": "Example app showcasing a nice way of writing tests in React",
"main": "index.js",
"scripts": {
"start": "serve -s public",
"start:watch": "npm run build && npm-run-all --parallel start 'build -- --watch'",
"build": "webpack",
"test": "jest"
},
"author": {
"name": "Timothy Foster",
"url": "https://auroratide.com"
},
"license": "ISC",
"dependencies": {
"mobx": "^5.10.1",
"mobx-react-lite": "^1.4.0",
"prop-types": "^15.7.2",
"react": "^16.9.0-alpha.0",
"react-dom": "^16.9.0-alpha.0",
"regenerator-runtime": "^0.13.2",
"styled-components": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.1",
"babel-loader": "^8.0.6",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"serve": "^11.0.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
}
}