-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.59 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
{
"name": "react-card-search",
"version": "1.0.0",
"description": "Displays cards from an API and allows user to click them to see more details",
"main": "index.js",
"scripts": {
"prebuild": "npm i",
"acceptance-test": "npm run cypress:run",
"acceptance-tests": "npm run cypress:run",
"acceptance-test:open": "npm run cypress:open",
"acceptance-tests:open": "npm run cypress:open",
"unit-test": "jest --coverage",
"unit-tests": "jest --coverage",
"build": "webpack && npm run build-css",
"start": "concurrently --kill-others \"webpack-dev-server --inline --no-info\" \"npm run watch-css\"",
"watch": "webpack-dev-server --watch-content-base ./web",
"build-css": "node-sass-chokidar ./src/sass -o ./web/css",
"watch-css": "npm run build-css && node-sass-chokidar src/sass -o ./web/css --watch --recursive",
"cypress:run": "start-server-and-test start http-get://localhost:8080/card-listings.html cy:run",
"cypress:open": "start-server-and-test start http-get://localhost:8080/card-listings.html cy:open",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calflan/react-card-search.git"
},
"author": "Calum Flanagan",
"license": "ISC",
"homepage": "https://github.com/calflan/react-card-search#readme",
"bugs": {
"url": "https://github.com/calflan/react-card-search/issues"
},
"jest": {
"setupFiles": [
"./__tests__/unit/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"/cypress/",
"jestsetup.js"
]
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.4.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.5.1",
"cypress": "^3.1.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"jest": "^24.4.0",
"node-fetch": "^2.3.0",
"node-sass-chokidar": "^1.3.4",
"shelljs": "^0.8.2",
"start-server-and-test": "^1.7.11",
"tree-kill": "^1.1.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"fetch-mock": "^7.3.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-star-ratings": "^2.3.0"
}
}