-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 977 Bytes
/
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
{
"name": "learning-words",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "yarn start:client",
"start:client": "parcel src/index.html",
"format:fix": "npx prettier --write './src/**/*{.js,.jsx,.tsx,.ts}'",
"build": "yarn build:client",
"build:client": "parcel build src/index.html --out-dir dist/client"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/ramda": "^0.26.8",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-swipeable-views": "^0.12.2",
"@types/styled-components": "^4.1.15",
"parcel-bundler": "^1.12.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"color": "^3.1.1",
"open-color": "^1.6.3",
"parcel-plugin-inlinesvg": "^0.1.1",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-swipeable-views": "^0.12.17",
"styled-components": "^4.2.0"
}
}