-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
44
45
{
"name": "xciter",
"version": "1.0.0",
"description": "Batch XCI to NSP converter tool",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"out": "npm run build && npm run export && touch out/.nojekyll",
"prettier:check": "$(npm bin)/prettier --check 'src/**/*.{ts,tsx}'",
"prettier:write": "$(npm bin)/prettier --write 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"@zeit/next-workers": "^1.0.0",
"boxicons": "^2.0.3",
"next": "^9.0.7",
"next-redux-wrapper": "^4.0.0",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-dropzone": "^10.1.9",
"react-redux": "^7.1.1",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"@types/node": "^12.7.8",
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"@types/react-redux": "^7.1.4",
"prettier": "1.18.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andweeb/xciter.git"
},
"author": "Andrew Kwon",
"license": "ISC",
"bugs": {
"url": "https://github.com/andweeb/xciter/issues"
},
"homepage": "https://github.com/andweeb/xciter#readme"
}