forked from freeCodeCamp/testable-projects-fcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "testable-projects-fcc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/register": "^7.0.0-beta.49",
"@babel/runtime": "^7.1.2",
"babel-loader": "^8.0.0-beta.3",
"jsdom": "^11.2.0",
"webpack": "^4.10.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"babel-eslint": "^8.2.3",
"chai": "^3.5.0",
"chromedriver": "^2.40.0",
"commitizen": "^2.10.1",
"css-loader": "^0.28.11",
"cz-customizable": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-freecodecamp": "^1.1.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^7.9.1",
"geckodriver": "^1.12.2",
"html-loader": "^0.5.1",
"husky": "^1.0.0-rc.13",
"jquery": "^3.3.1",
"live-server": "^1.2.0",
"mocha": "^5.2.0",
"selenium-webdriver": "^3.4.0",
"selfsigned": "^1.10.3",
"style-loader": "^0.18.2",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.5"
},
"scripts": {
"develop": "webpack-dev-server --config webpack.config.dev.js",
"commit": "git-cz",
"live-serve-build": "live-server --no-browser --https=config/live-server-https build/testable-projects-fcc/v1",
"lint": "eslint ./**/*.js",
"pretest": "npm run lint",
"test": "mocha",
"start": "webpack --watch --config webpack.config.dev.js",
"build": "webpack"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "yarn run lint"
}
},
"author": "",
"license": "ISC"
}