-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "examplify",
"version": "1.0.0",
"description": "Examplify mission is make online exam/ testing easy for both exam taker and giver.",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"clean": "rm -rf build/ && rm -rf dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thapecroth/Examplify.git"
},
"keywords": [
"education",
"eye-tracking"
],
"author": "thapecroth, thasarito",
"license": "ISC",
"bugs": {
"url": "https://github.com/thapecroth/Examplify/issues"
},
"homepage": "https://github.com/thapecroth/Examplify#readme",
"dependencies": {
"node-sass": "^4.13.1",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-load-script": "0.0.6",
"styled-components": "^5.0.1"
},
"browserslist": [
"last 1 Chrome versions"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,yml,md}": [
"prettier --write",
"git add"
]
}
}