-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
91 lines (91 loc) · 2.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "tic-tac-toe-ai",
"description": "Implementing neural networks to learn how to play tic tac toe",
"version": "0.0.1",
"author": "Angelo Ocana <angeloocana@gmail.com>",
"dependencies": {
"gatsby": "^1.9.55",
"gatsby-link": "^1.6.20",
"gatsby-plugin-react-helmet": "^1.0.1",
"gatsby-plugin-styled-components": "^1.0.4",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"synaptic": "^1.1.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"prestart": "yarn run lint",
"start": "yarn run develop",
"lint": "./node_modules/.bin/eslint --fix --ext .js,.jsx --ignore-pattern public .",
"build": "rm -rf public/*.html && gatsby build",
"predeploy": "yarn run lint && yarn run build && rm ./public/*.js.map",
"deploy": "surge public/ --domain tic-tac-toe-ai.surge.sh",
"develop": "gatsby develop",
"pretest": "yarn run lint",
"test": "jest && codecov",
"test:watch": "jest --watch",
"serve": "yarn run build && gatsby serve"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"codecov": "^2.3.0",
"es6-object-assign": "^1.1.0",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"gatsby-plugin-google-analytics": "^1.0.8",
"gatsby-plugin-i18n": "^0.3.2",
"gatsby-plugin-manifest": "^1.0.1",
"gatsby-plugin-offline": "^1.0.1",
"gatsby-plugin-preact": "^1.0.11",
"gatsby-plugin-sharp": "^1.6.9",
"gatsby-plugin-sitemap": "^1.2.2",
"gatsby-remark-copy-linked-files": "^1.5.0",
"gatsby-remark-prismjs": "^1.2.8",
"gatsby-remark-responsive-iframe": "^1.4.8",
"gatsby-remark-responsive-image": "^1.0.0-alpha13-alpha.435e0178",
"gatsby-remark-smartypants": "^1.4.8",
"gatsby-source-filesystem": "^1.5.2",
"gatsby-transformer-remark": "^1.7.15",
"gatsby-transformer-sharp": "^1.6.10",
"intl": "^1.2.5",
"jest": "^21.2.1",
"lodash-webpack-plugin": "^0.11.4",
"prettier": "^1.7.4",
"prop-types": "^15.6.0",
"ptz-assert": "^1.6.8",
"ptz-fp": "^1.3.0",
"ptz-i18n": "^0.1.2",
"ptz-math": "^1.1.0",
"ptz-validations": "^3.0.1",
"raf": "^3.3.2",
"ramda": "^0.24.1",
"react-addons-perf": "^15.4.2",
"react-disqus-comments": "^1.1.0",
"react-disqus-thread": "^0.4.0",
"react-gravatar": "^2.6.3",
"react-icons": "^2.2.7",
"react-intl": "^2.3.0",
"react-test-renderer": "^16.0.0",
"regenerator-runtime": "^0.11.0",
"styled-components": "^2.2.1",
"surge": "^0.19.0",
"worker-loader": "^1.0.0"
},
"jest": {
"collectCoverage": true,
"moduleNameMapper": {
"\\aiWorker.js": "<rootDir>/src/__mocks__/aiWorkerMock.js"
}
}
}