This repository has been archived by the owner on Dec 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "memory-game",
"author": "Matthew Page",
"description": "The classic card game of memory",
"version": "1.0.0",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-kyt-react": "0.3.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"compression": "1.7.1",
"core-js": "^2.5.7",
"express": "4.16.2",
"kyt": "0.9.0",
"lodash": "^4.17.15",
"prop-types": "15.6.0",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-freeze": "^0.1.5",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"istanbul-api": "1.2.2",
"istanbul-reports": "1.1.4",
"prettier": "1.8.2"
},
"scripts": {
"dev": "kyt dev",
"build": "kyt build",
"start": "npm run build && node build/server/main.js",
"proto": "kyt proto",
"test": "kyt test -- --setupTestFrameworkScriptFile=../setupTests.js",
"test-watch": "kyt test -- --watch --setupTestFrameworkScriptFile=../setupTests.js",
"test-coverage": "kyt test -- --coverage --setupTestFrameworkScriptFile=../setupTests.js",
"lint": "npm run lint-script && npm run lint-style",
"lint-script": "kyt lint-script",
"lint-style": "kyt lint-style",
"kyt:help": "kyt --help"
}
}