-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 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
{
"name": "pizzazz-micro-scrabble",
"version": "0.0.1",
"description": "a micro scrabble game",
"license": "MIT",
"engines": {
"node": "16.18.1",
"npm": "6.4.1",
"yarn": "1.22.19"
},
"dependencies": {
"compression": "^1.7.4",
"express": "4.18.2",
"ramda": "^0.28.0",
"socket.io": "^2.4.0",
"yarn": "1.22.19"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.87.0",
"jest": "^24.1.0",
"nodemon": "^1.19.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/client",
"/node_modules/"
],
"setupFiles": [
"<rootDir>/client/setupTests.js"
]
},
"scripts": {
"flow": "flow",
"test": "jest",
"start": "cd server && babel-node index",
"dev": "cd server && nodemon --exec babel-node index",
"build": "cd client && yarn install && yarn build"
}
}