forked from swashata/wp-webpack-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) Β· 1.6 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
{
"name": "wpackio-e2e",
"version": "1.0.0",
"description": "For e2e testing of wpackio",
"main": "index.html",
"author": "Swashata Ghosh (https://swas.io)",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/jest": "26.0.15",
"@wpackio/scripts": "file:../packages/scripts",
"autoprefixer": "9.8.6",
"cssnano": "4.1.10",
"cypress": "4.12.1",
"fork-ts-checker-webpack-plugin": "5.2.1",
"jest": "26.6.3",
"less": "3.12.2",
"node-sass": "4.14.1",
"serve": "11.3.2",
"typescript": "3.9.7",
"wait-on": "5.2.0"
},
"scripts": {
"bootstrap": "wpackio-scripts bootstrap",
"build": "wpackio-scripts build",
"start": "wpackio-scripts start",
"archive": "wpackio-scripts pack",
"serve": "serve",
"cypress:open": "cypress open",
"cypress:runapp": "cypress run --spec 'cypress/integration/serve/app.spec.js'",
"cypress:runprod": "cypress run --spec 'cypress/integration/build/prod.spec.js'",
"wait-for-test-server": "wait-on http://localhost:5000 --timeout 30000",
"wait-for-wpackio-server": "wait-on http://127.0.0.1:3000 --timeout 30000",
"test": "jest --color",
"dev": "../packages/scripts/lib/bin/index.js",
"start:dev": "../packages/scripts/lib/bin/index.js start",
"build:dev": "../packages/scripts/lib/bin/index.js build",
"archive:dev": "../packages/scripts/lib/bin/index.js pack",
"bootstrap:dev": "../packages/scripts/lib/bin/index.js bootstrap"
},
"dependencies": {
"@types/webpack-env": "1.16.0",
"@wpackio/entrypoint": "file:../packages/entrypoint",
"execa": "4.1.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-hot-loader": "4.13.0"
}
}