-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
41 lines (41 loc) · 951 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
38
39
40
41
{
"name": "@packages/example",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build": "node ./bin/build.js && gulp build",
"clean-deps": "rimraf node_modules",
"predeploy": "yarn build",
"deploy": "gh-pages -d build -b gh-pages",
"postinstall": "echo '@packages/example needs: yarn build'",
"test": "yarn test-unit",
"test-e2e": "cypress run",
"test-unit": "echo 'no unit tests'"
},
"devDependencies": {
"cross-env": "6.0.3",
"cypress-example-kitchensink": "3.1.2",
"gh-pages": "5.0.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-rev-all": "2.0.2",
"resolve-pkg": "2.0.0"
},
"files": [
"cypress",
"lib"
],
"types": "index.d.ts",
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/cypress",
"{projectRoot}/app",
"{projectRoot}/build"
]
}
}
}
}