-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
{
"name": "memory-game",
"author": "Anna Rasshivkina",
"description": "An unforgettable classic card game",
"version": "1.0.0",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/annafractuous/memory-game"
},
"private": true,
"dependencies": {
"babel-preset-kyt-react": "0.3.0",
"classnames": "^2.2.5",
"compression": "1.7.1",
"express": "4.16.2",
"kyt": "0.9.0",
"prop-types": "15.6.0",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"enzyme": "3.2.0",
"prettier": "1.8.2"
},
"scripts": {
"dev": "kyt dev",
"build": "kyt build",
"start": "node build/server/main.js",
"proto": "kyt proto",
"test": "kyt test",
"test-watch": "kyt test -- --watch",
"test-coverage": "kyt test -- --coverage",
"lint": "npm run lint-script && npm run lint-style",
"lint-script": "kyt lint-script",
"lint-style": "kyt lint-style",
"kyt:help": "kyt --help"
}
}