-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
38
39
40
41
42
43
44
{
"name": "create-caccl",
"version": "2.1.7",
"description": "Initializes a new caccl-based Canvas LTI app project.",
"main": "./lib/index.js",
"bin": {
"create-caccl": "./lib/init.js"
},
"scripts": {
"start": "node ./lib/index.js",
"build": "npm i --production=false && tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/create-caccl.git"
},
"keywords": [
"CACCL",
"Initializer"
],
"author": "Gabe Abrams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/create-caccl/issues"
},
"homepage": "https://github.com/harvard-edtech/create-caccl#readme",
"dependencies": {
"clear": "^0.1.0",
"prompt-sync": "^4.1.6",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/node": "^17.0.21",
"@types/prompt-sync": "^4.1.1",
"@types/rimraf": "^3.0.2",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"typescript": "^4.6.2"
}
}