forked from dojo/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
{
"name": "demo",
"version": "1.0.0",
"main": "src/main.ts",
"scripts": {
"build:app:ghpages": "dojo build app --dojorc .dojorc-ghpages",
"build:app": "dojo build app",
"build:widgets": "dojo build widget",
"clean": "shx rm -rf src/assets",
"move-to-assets": "shx mv output/dist src/assets",
"build:ghpages": "npm run build:widgets && npm run move-to-assets && npm run build:app:ghpages && npm run clean",
"build": "npm run build:widgets && npm run move-to-assets && npm run build:app && npm run clean",
"prettier": "prettier --write \"{docs,src,tests}/**/*.{ts,tsx,md}\"",
"test-ci": "echo no tests"
},
"dependencies": {
"@dojo/framework": "^6.0.0",
"tslib": "~1.9.1",
"@webcomponents/custom-elements": "~1.0.8"
},
"devDependencies": {
"@dojo/cli": "^6.0.0",
"@dojo/cli-build-app": "^6.0.0",
"@dojo/cli-build-widget": "^6.0.0",
"@dojo/cli-test-intern": "^6.0.0",
"@types/glob": "~5.0.0",
"@types/grunt": "~0.4.0",
"@types/node": "^6.0.46",
"@types/sinon": "^1.16.35",
"prettier": "1.18.2",
"shx": "^0.2.2",
"sinon": "^2.0.0",
"ts-loader": "5.4.5",
"typescript": "~3.4.5"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}