forked from LucaRainone/multiplication-tables-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "tabelline",
"version": "1.0.0",
"description": "A simple way to learn multiplication tables",
"scripts": {
"start": "concurrently --kill-others \"npm run watch\" \"npm run server\"",
"server": "node ./cypress/static-server",
"build": "gulp --env production",
"watch": "gulp watch",
"cy:run": "cypress run --spec cypress/integration/*",
"cy:open": "cypress open",
"test": "gulp && start-server-and-test server http://localhost:9981/src/index.html cy:run"
},
"repository": {
"type": "git",
"url": "git@gitlab.rainone.me:luca/tabelline.git"
},
"author": "Luca Rainone",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime": "^7.13.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^6.0.0",
"core-js": "^3.9.1",
"cssnano": "^4.1.10",
"cypress": "^6.8.0",
"cypress-localstorage-commands": "^1.4.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"start-server-and-test": "^1.12.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"workbox-expiration": "^6.1.2",
"workbox-precaching": "^6.1.2",
"workbox-routing": "^6.1.2",
"workbox-strategies": "^6.1.2",
"workbox-sw": "^6.1.2"
},
"dependencies": {}
}