-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (42 loc) · 1.28 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
{
"name": "buildit-javascript-webcrawler",
"version": "0.0.1",
"description": "Base code for Frontend",
"main": "index.js",
"browser": "dist/bundle.js",
"author": "FrostieBot <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"lint": "eslint .",
"serve": "LOCAL=y rollup -c",
"serve:watch": "LOCAL=y rollup -c --watch",
"test": "jest",
"test:e2e": "jest -c e2e/jest.config.js",
"test:ci": "jest --ci --runInBand --coverage",
"test:ci:e2e": "jest --ci --runInBand -c e2e/jest.config.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1"
}
}