-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (34 loc) · 897 Bytes
/
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
{
"name": "flappy-bird",
"version": "1.0.0",
"scripts": {
"build": "webpack",
"start": "webpack serve --open",
"storybook": "start-storybook -p 6006",
"format": "prettier --write .",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:e2e": "yarn cypress:run",
"setup": "node scripts/setup.js",
"test": "node scripts/test.js",
"lint": "node scripts/lint.js",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
}
},
"dependencies": {
"@storybook/html": "^8.2.6"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"cypress": "^13.13.1",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.0.0"
}
}