-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "rotto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"react-compile": "webpack -d --watch",
"start": "nodemon server/app.js",
"seed": "node db/seed.js",
"test": "jest --watch",
"tests-coverage": "jest --coverage --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghrsea-bowsers-castle/rotto.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ghrsea-bowsers-castle/rotto/issues"
},
"jest": {
"setupFiles": [
"<rootDir>/client/tests/enzyme.config.js"
],
"transform": {
"^.+\\.js.?$": "babel-jest"
},
"transformIgnorePatterns": [
"!node_modules/react-runtime"
],
"moduleNameMapper": {
"\\.(css|less|scss|sss|styl)$": "<rootDir>/node_modules/jest-css-modules"
}
},
"homepage": "https://github.com/ghrsea-bowsers-castle/rotto#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-export-extensions": "^7.0.0-beta.32",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"jest-css-modules": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mysql": "^2.14.1",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-star-ratings": "^2.3.0"
}
}