-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "uneek",
"license": "MIT",
"version": "0.1.0",
"author": "Dan Rosén",
"description": "Unique differentation",
"main": "./dist/bundle.js",
"repository": "https://github.com/danr/uneek/",
"dependencies": {
"bootstrap": "^3.3.7",
"comma-separated-values": "^3.6.4",
"jquery": "^3.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reactive-lens": "^0.5.0"
},
"devDependencies": {
"@types/jquery": "^3.2.17",
"@types/jsdom": "^11.0.4",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"@types/tape": "^4.2.30",
"jsdom": "^11.5.1",
"parcel-bundler": "^1.3.1",
"parcel-plugin-typescript": "^0.5.2",
"prettier": "^1.9.2",
"tap-diff": "^0.1.1",
"tape": "^4.8.0",
"typescript": "^2.6.1"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url ./",
"pretest": "tsc",
"prettier": "prettier --list-different --write \"{src,test}/**/*.{css,ts{,x}}\"",
"test": "tape dist/test/*.js | tap-diff",
"deploy": "gh-pages -d dist"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"jsxBracketSameLine": true,
"bracketSpacing": false
}
}