-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 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
{
"name": "todo-graphql-example",
"version": "1.0.0",
"description": "TodoMVC with local GraphQL backend",
"main": "index.js",
"private": true,
"scripts": {
"start": "json-graphql-server db.js",
"app": "parcel serve src/index.html",
"build": "parcel build src/index.html --no-source-maps",
"app:built": "serve -p 1234 --no-clipboard dist",
"preserver": "npm run build",
"server": "npm start & npm run app",
"server:ci": "npm start & npm run app:built",
"dev": "start-test server 1234 cy:open",
"local": "start-test server 1234 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"keywords": [],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com> (https://glebbahmutov.com/)",
"license": "ISC",
"dependencies": {
"@apollo/client": "3.5.2",
"classnames": "2.3.1",
"graphql": "16.0.1",
"json-graphql-server": "2.2.3",
"react": "17.0.2",
"react-apollo": "3.1.5",
"react-dom": "17.0.2",
"todomvc-app-css": "2.4.1"
},
"devDependencies": {
"@bahmutov/cy-api": "1.6.2",
"cypress": "9.7.0",
"cypress-data-session": "1.15.1",
"cypress-each": "1.10.0",
"cypress-grep": "2.14.0",
"cypress-highlight": "1.2.0",
"cypress-timestamps": "1.0.2",
"parcel-bundler": "1.12.5",
"prettier": "2.4.1",
"serve": "13.0.2",
"start-server-and-test": "1.14.0"
}
}