-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "@packages/runner",
"version": "0.0.0-development",
"private": true,
"browser": "src/index.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "node ../../scripts/run-webpack",
"build-prod": "cross-env NODE_ENV=production yarn build",
"check-ts": "yarn -s tslint",
"clean-deps": "rimraf node_modules",
"cypress:open": "echo \"These tests have been moved to @packages/app. \" && exit 1",
"cypress:run": "echo \"These tests have been moved to @packages/app. \" && exit 1",
"postinstall": "echo '@packages/runner needs: yarn build'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "node ../../scripts/run-webpack --watch --progress"
},
"devDependencies": {
"babel-plugin-prismjs": "1.0.2",
"bluebird": "3.5.3",
"cross-env": "6.0.3",
"rimraf": "^5.0.10",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"dist"
],
"nx": {
"implicitDependencies": [
"@packages/driver",
"@packages/reporter",
"@packages/config"
]
}
}